Skip to content

Adaptive (runtime, stats-based) conjunct reordering for FilterExec#22698

Draft
adriangb wants to merge 12 commits into
apache:mainfrom
pydantic:lift-selectivity-stats
Draft

Adaptive (runtime, stats-based) conjunct reordering for FilterExec#22698
adriangb wants to merge 12 commits into
apache:mainfrom
pydantic:lift-selectivity-stats

Conversation

@adriangb

@adriangb adriangb commented Jun 1, 2026

Copy link
Copy Markdown
Contributor

Which issue does this PR close?

Rationale for this change

Predicate evaluation order matters: running a selective predicate first lets it
gate the work of the predicates after it. The static cheap/expensive heuristic
(#22343) sorts conjuncts into two cost classes and stable-sorts within each, so
it does nothing to order multiple similarly-expensive predicates; and
BinaryExpr's AND short-circuit only gates on a leftmost selective conjunct.
So a conjunction of several expensive predicates whose selective member is not
written first is evaluated with every predicate scanning ~every row — and
neither mechanism fixes it.

This PR adds runtime, statistics-based conjunct reordering for FilterExec:
it measures each conjunct's selectivity and cost on the rows that actually reach
it and runs the ones that discard the most rows per unit of CPU time first.
Maximising discards-per-second is exactly minimising cost_per_row / (1 - pass_rate),
the classic optimal ordering key for independent conjuncts.

It is off by default (datafusion.execution.adaptive_filter_reordering).

What changes are included in this PR?

Split into four reviewable commits:

  1. physical-expr-common: adaptive selectivity-stats substrate — a
    policy-free SelectivityStats (online selectivity + cost with Welford
    mean/variance and confidence bounds) and a concurrent AdaptiveStatsRegistry.
    Reusable by other consumers (e.g. a future parquet-scan integration).

  2. common: config flag execution.adaptive_filter_reordering (default
    false), plus regenerated configs.md / information_schema listing.

  3. physical-plan: adaptive conjunct reordering in FilterExec — a
    stream-local evaluator that:

    • evaluates conjuncts sequentially with threshold-gated compaction (mirroring
      BinaryExpr's pre-selection) and measures each marginally;
    • ranks by mean discards-per-second and freezes as soon as the ranking is
      statistically certain
      (adjacent confidence intervals stop overlapping),
      or after a small sample cap if the conjuncts are indistinguishable;
    • on freeze, fuses the conjuncts into a single left-deep AND in the learned
      order and evaluates it as an ordinary predicate (no measurement overhead,
      inherits BinaryExpr pre-selection);
    • periodically re-thaws with exponential backoff to catch distribution
      drift, so steady-state overhead decays toward zero.

    State is stream-local; the plan, results, and EXPLAIN are unchanged.

  4. Tests — an end-to-end .slt asserting identical results/plan with the
    flag on and off.

Are these changes tested?

Yes:

  • Unit tests for the substrate (SelectivityStats, registry) and the
    FilterExec evaluator (gating correctness, certainty-freeze, re-thaw backoff,
    drift adaptation).
  • adaptive_filter.slt: results and EXPLAIN identical with the flag on/off.

Are there any user-facing changes?

One new config option, datafusion.execution.adaptive_filter_reordering
(experimental, default false). When enabled, the order in which a conjunctive
filter's predicates are evaluated may change at runtime; results are unchanged,
but observable side effects of fallible predicates could differ (predicates
containing volatile expressions are never reordered).

@github-actions github-actions Bot added documentation Improvements or additions to documentation physical-expr Changes to the physical-expr crates sqllogictest SQL Logic Tests (.slt) common Related to common crate physical-plan Changes to the physical-plan crate labels Jun 1, 2026
@adriangb

adriangb commented Jun 1, 2026

Copy link
Copy Markdown
Contributor Author

run benchmarks

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593095184-389-pg64x 6.12.68+ #1 SMP Wed Apr 1 02:23:28 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593095184-391-ctjg4 6.12.68+ #1 SMP Wed Apr 1 02:23:28 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: tpch
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593095184-390-w2tfn 6.12.68+ #1 SMP Wed Apr 1 02:23:28 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@github-actions

github-actions Bot commented Jun 1, 2026

Copy link
Copy Markdown

Thank you for opening this pull request!

Reviewer note: cargo-semver-checks reported the current version number is not SemVer-compatible with the changes in this pull request (compared against the base branch).

Details
     Cloning apache/main
    Building datafusion-common v54.0.0 (current)
       Built [  32.004s] (current)
     Parsing datafusion-common v54.0.0 (current)
      Parsed [   0.063s] (current)
    Building datafusion-common v54.0.0 (baseline)
       Built [  31.532s] (baseline)
     Parsing datafusion-common v54.0.0 (baseline)
      Parsed [   0.063s] (baseline)
    Checking datafusion-common v54.0.0 -> v54.0.0 (no change; assume patch)
     Checked [   1.061s] 223 checks: 222 pass, 1 fail, 0 warn, 30 skip

--- failure constructible_struct_adds_field: externally-constructible struct adds field ---

Description:
A pub struct constructible with a struct literal has a new pub field. Existing struct literals must be updated to include the new field.
        ref: https://doc.rust-lang.org/reference/expressions/struct-expr.html
       impl: https://github.com/obi1kenobi/cargo-semver-checks/tree/v0.48.0/src/lints/constructible_struct_adds_field.ron

Failed in:
  field ExecutionOptions.adaptive_filter_reordering in /home/runner/work/datafusion/datafusion/datafusion/common/src/config.rs:642

     Summary semver requires new major version: 1 major and 0 minor checks failed
    Finished [  66.393s] datafusion-common
    Building datafusion-physical-expr-common v54.0.0 (current)
       Built [  22.622s] (current)
     Parsing datafusion-physical-expr-common v54.0.0 (current)
      Parsed [   0.025s] (current)
    Building datafusion-physical-expr-common v54.0.0 (baseline)
       Built [  22.488s] (baseline)
     Parsing datafusion-physical-expr-common v54.0.0 (baseline)
      Parsed [   0.023s] (baseline)
    Checking datafusion-physical-expr-common v54.0.0 -> v54.0.0 (no change; assume patch)
     Checked [   0.331s] 223 checks: 223 pass, 30 skip
     Summary no semver update required
    Finished [  47.598s] datafusion-physical-expr-common
    Building datafusion-physical-plan v54.0.0 (current)
       Built [  34.068s] (current)
     Parsing datafusion-physical-plan v54.0.0 (current)
      Parsed [   0.137s] (current)
    Building datafusion-physical-plan v54.0.0 (baseline)
       Built [  34.295s] (baseline)
     Parsing datafusion-physical-plan v54.0.0 (baseline)
      Parsed [   0.141s] (baseline)
    Checking datafusion-physical-plan v54.0.0 -> v54.0.0 (no change; assume patch)
     Checked [   0.919s] 223 checks: 223 pass, 30 skip
     Summary no semver update required
    Finished [  70.794s] datafusion-physical-plan
    Building datafusion-sqllogictest v54.0.0 (current)
error: running cargo-doc on crate 'datafusion-sqllogictest' failed with output:
-----
   Compiling proc-macro2 v1.0.106
   Compiling quote v1.0.45
   Compiling unicode-ident v1.0.24
   Compiling libc v0.2.186
    Checking cfg-if v1.0.4
    Checking bytes v1.11.1
    Checking memchr v2.8.2
   Compiling serde_core v1.0.228
   Compiling syn v2.0.117
   Compiling autocfg v1.5.1
   Compiling jobserver v0.1.34
   Compiling shlex v2.0.1
   Compiling find-msvc-tools v0.1.9
   Compiling cc v1.2.64
    Checking itoa v1.0.18
    Checking allocator-api2 v0.2.21
    Checking once_cell v1.21.4
    Checking equivalent v1.0.2
    Checking foldhash v0.2.0
   Compiling libm v0.2.16
   Compiling num-traits v0.2.19
    Checking hashbrown v0.17.1
    Checking pin-project-lite v0.2.17
   Compiling zmij v1.0.21
    Checking indexmap v2.14.0
    Checking futures-core v0.3.32
   Compiling zerocopy v0.8.52
    Checking futures-sink v0.3.32
    Checking errno v0.3.14
    Checking socket2 v0.6.4
    Checking signal-hook-registry v1.4.8
    Checking mio v1.2.1
   Compiling version_check v0.9.5
   Compiling serde v1.0.228
   Compiling getrandom v0.3.4
    Checking num-integer v0.1.46
   Compiling serde_json v1.0.150
    Checking slab v0.4.12
    Checking futures-channel v0.3.32
    Checking smallvec v1.15.2
    Checking num-bigint v0.4.6
   Compiling synstructure v0.13.2
    Checking http v1.4.2
    Checking futures-task v0.3.32
    Checking futures-io v0.3.32
    Checking base64 v0.22.1
    Checking iana-time-zone v0.1.65
    Checking chrono v0.4.45
    Checking tracing-core v0.1.36
   Compiling zerocopy-derive v0.8.52
   Compiling tokio-macros v2.7.0
   Compiling serde_derive v1.0.228
    Checking tokio v1.52.3
   Compiling futures-macro v0.3.32
    Checking futures-util v0.3.32
   Compiling tracing-attributes v0.1.31
   Compiling zerofrom-derive v0.1.7
    Checking siphasher v1.0.3
    Checking tracing v0.1.44
   Compiling yoke-derive v0.8.2
    Checking stable_deref_trait v1.2.1
    Checking num-complex v0.4.6
   Compiling zerovec-derive v0.11.3
    Checking zerofrom v0.1.8
    Checking getrandom v0.2.17
   Compiling pkg-config v0.3.33
    Checking half v2.7.1
    Checking phf_shared v0.12.1
   Compiling displaydoc v0.2.6
   Compiling ahash v0.8.12
    Checking yoke v0.8.3
   Compiling thiserror v2.0.18
   Compiling chrono-tz v0.10.4
    Checking zerovec v0.11.6
    Checking percent-encoding v2.3.2
    Checking phf v0.12.1
    Checking arrow-buffer v59.0.0
    Checking ppv-lite86 v0.2.21
   Compiling thiserror-impl v2.0.18
    Checking arrow-schema v59.0.0
   Compiling ring v0.17.14
    Checking arrow-data v59.0.0
   Compiling semver v1.0.28
    Checking log v0.4.32
    Checking rand_core v0.10.1
   Compiling getrandom v0.4.2
    Checking tinystr v0.8.3
    Checking writeable v0.6.3
    Checking litemap v0.8.2
    Checking bitflags v2.13.0
    Checking untrusted v0.9.0
    Checking icu_locale_core v2.2.0
    Checking potential_utf v0.1.5
    Checking zerotrie v0.2.4
   Compiling zstd-sys v2.0.16+zstd.1.5.7
   Compiling async-trait v0.1.89
    Checking rand_core v0.9.5
   Compiling icu_normalizer_data v2.2.0
   Compiling icu_properties_data v2.2.0
    Checking utf8_iter v1.0.4
    Checking icu_collections v2.2.0
    Checking rand_chacha v0.9.0
    Checking icu_provider v2.2.0
    Checking rand v0.9.4
    Checking aho-corasick v1.1.4
    Checking lexical-util v1.0.7
   Compiling object v0.37.3
    Checking ryu v1.0.23
   Compiling zstd-safe v7.2.4
    Checking regex-syntax v0.8.11
    Checking arrow-array v59.0.0
    Checking regex-automata v0.4.14
    Checking arrow-select v59.0.0
    Checking icu_properties v2.2.0
    Checking icu_normalizer v2.2.0
   Compiling rustix v1.1.4
    Checking idna_adapter v1.2.2
    Checking form_urlencoded v1.2.2
    Checking typenum v1.20.1
    Checking regex v1.12.4
   Compiling crc32fast v1.5.0
   Compiling parking_lot_core v0.9.12
    Checking unicode-width v0.2.2
    Checking either v1.16.0
    Checking idna v1.1.0
    Checking lexical-write-integer v1.0.6
    Checking lexical-parse-integer v1.0.6
   Compiling rustc_version v0.4.1
    Checking futures-executor v0.3.32
   Compiling pin-project-internal v1.1.13
    Checking scopeguard v1.2.0
    Checking adler2 v2.0.1
    Checking simd-adler32 v0.3.9
    Checking miniz_oxide v0.8.9
    Checking lock_api v0.4.14
    Checking futures v0.3.32
   Compiling flatbuffers v25.12.19
    Checking lexical-parse-float v1.0.6
    Checking pin-project v1.1.13
    Checking url v2.5.8
    Checking lexical-write-float v1.0.6
    Checking zlib-rs v0.6.3
    Checking unicode-segmentation v1.13.3
    Checking comfy-table v7.2.2
   Compiling ar_archive_writer v0.5.2
    Checking lexical-core v1.0.6
    Checking itertools v0.14.0
    Checking flate2 v1.1.9
    Checking arrow-ord v59.0.0
   Compiling psm v0.1.31
    Checking twox-hash v2.1.2
    Checking atoi v2.0.0
   Compiling stacker v0.1.24
    Checking alloc-no-stdlib v2.0.4
   Compiling snap v1.1.1
    Checking hex v0.4.3
    Checking lz4_flex v0.13.1
    Checking alloc-stdlib v0.2.2
    Checking arrow-cast v59.0.0
    Checking parking_lot v0.12.5
    Checking csv-core v0.1.13
    Checking humantime v2.3.0
    Checking simdutf8 v0.1.5
    Checking same-file v1.0.6
   Compiling paste v1.0.15
    Checking walkdir v2.5.0
    Checking csv v1.4.0
    Checking brotli-decompressor v5.0.1
   Compiling recursive-proc-macro-impl v0.1.1
    Checking subtle v2.6.1
    Checking arrow-csv v59.0.0
    Checking recursive v0.1.1
    Checking arrow-json v59.0.0
    Checking brotli v8.0.3
    Checking object_store v0.13.2
    Checking arrow-string v59.0.0
    Checking arrow-arith v59.0.0
    Checking arrow-row v59.0.0
    Checking uuid v1.23.3
    Checking zstd v0.13.3
    Checking tokio-util v0.7.18
    Checking arrow-ipc v59.0.0
   Compiling sqlparser_derive v0.5.0
   Compiling seq-macro v0.3.6
    Checking sqlparser v0.62.0
    Checking cpufeatures v0.3.0
    Checking hybrid-array v0.4.12
    Checking cmov v0.5.4
    Checking linux-raw-sys v0.12.1
    Checking arrow v59.0.0
    Checking parquet v59.0.0
    Checking block-buffer v0.12.1
    Checking crypto-common v0.2.2
    Checking ctutils v0.4.2
   Compiling generic-array v0.14.7
    Checking const-oid v0.10.2
    Checking digest v0.11.3
    Checking datafusion-doc v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/doc)
   Compiling crossbeam-utils v0.8.21
    Checking foldhash v0.1.5
    Checking hashbrown v0.15.5
    Checking crypto-common v0.1.7
    Checking block-buffer v0.10.4
   Compiling heck v0.5.0
    Checking fixedbitset v0.5.7
    Checking fastrand v2.4.1
    Checking petgraph v0.8.3
    Checking tempfile v3.27.0
    Checking digest v0.10.7
    Checking sha2 v0.11.0
    Checking md-5 v0.11.0
    Checking hashbrown v0.14.5
   Compiling datafusion-macros v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/macros)
    Checking dashmap v6.2.1
   Compiling blake3 v1.8.5
   Compiling anyhow v1.0.102
    Checking arrayref v0.3.9
    Checking arrayvec v0.7.6
    Checking constant_time_eq v0.4.2
    Checking blake2 v0.10.6
   Compiling liblzma-sys v0.4.6
    Checking libbz2-rs-sys v0.2.5
    Checking bzip2 v0.6.1
    Checking datafusion-common-runtime v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/common-runtime)
   Compiling httparse v1.10.1
    Checking compression-core v0.4.32
    Checking http-body v1.0.1
    Checking glob v0.3.3
   Compiling prost-derive v0.14.4
    Checking tower-service v0.3.3
    Checking atomic-waker v1.1.2
    Checking try-lock v0.2.5
    Checking fnv v1.0.7
    Checking h2 v0.4.14
    Checking want v0.3.1
    Checking tokio-stream v0.1.18
    Checking httpdate v1.0.3
    Checking zeroize v1.8.2
    Checking rustls-pki-types v1.14.1
    Checking hyper v1.10.1
    Checking datafusion-common v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/common)
   Compiling prost v0.14.4
    Checking hyper-util v0.1.20
    Checking http-body-util v0.1.3
    Checking sync_wrapper v1.0.2
    Checking tower-layer v0.3.3
   Compiling prettyplease v0.2.37
   Compiling rustls v0.23.40
   Compiling prost-types v0.14.4
    Checking liblzma v0.4.6
    Checking compression-codecs v0.4.38
    Checking rustls-webpki v0.103.13
    Checking async-compression v0.4.42
    Checking datafusion-expr-common v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/expr-common)
   Compiling serde_derive_internals v0.29.1
   Compiling schemars v0.8.22
    Checking mime v0.3.17
    Checking datafusion-physical-expr-common v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr-common)
   Compiling hashbrown v0.16.1
   Compiling schemars_derive v0.8.22
    Checking axum-core v0.5.6
    Checking datafusion-functions-window-common v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-window-common)
    Checking datafusion-functions-aggregate-common v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-aggregate-common)
    Checking datafusion-expr v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/expr)
    Checking tower v0.5.3
    Checking matchit v0.8.4
   Compiling dyn-clone v1.0.20
   Compiling multimap v0.10.1
    Checking axum v0.8.9
   Compiling prost-build v0.14.4
   Compiling regress v0.10.5
    Checking datafusion-physical-expr v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr)
    Checking datafusion-execution v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/execution)
    Checking datafusion-functions v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/functions)
   Compiling pbjson-build v0.8.0
    Checking hyper-timeout v0.5.2
    Checking chacha20 v0.10.0
   Compiling ident_case v1.0.1
   Compiling strsim v0.11.1
   Compiling portable-atomic v1.13.1
   Compiling darling_core v0.23.0
    Checking rand v0.10.1
   Compiling typify-impl v0.5.0
    Checking tonic v0.14.6
   Compiling serde_tokenstream v0.2.3
    Checking ureq-proto v0.6.0
   Compiling bigdecimal v0.4.10
    Checking datafusion-physical-plan v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-plan)
    Checking datafusion-physical-expr-adapter v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-expr-adapter)
    Checking utf8-zero v0.8.1
   Compiling bollard-buildkit-proto v0.7.0
    Checking tinyvec_macros v0.1.1
    Checking crc-catalog v2.5.0
    Checking utf8parse v0.2.2
    Checking crc v3.4.0
    Checking anstyle-parse v1.0.0
   Compiling darling_macro v0.23.0
    Checking tinyvec v1.11.0
    Checking ureq v3.3.0
    Checking tonic-prost v0.14.6
    Checking datafusion-functions-aggregate v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-aggregate)
   Compiling strum_macros v0.28.0
   Compiling typify-macro v0.5.0
   Compiling structmeta-derive v0.3.0
    Checking deranged v0.5.8
    Checking is_terminal_polyfill v1.70.2
    Checking num-conv v0.2.2
   Compiling unsafe-libyaml v0.2.11
    Checking anstyle v1.0.14
    Checking time-core v0.1.9
    Checking colorchoice v1.0.5
    Checking anstyle-query v1.1.5
    Checking powerfmt v0.2.0
    Checking anstream v1.0.0
    Checking time v0.3.48
   Compiling serde_yaml v0.9.34+deprecated
   Compiling structmeta v0.3.0
    Checking arrow-avro v59.0.0
   Compiling typify v0.5.0
    Checking datafusion-functions-nested v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-nested)
    Checking datafusion-session v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/session)
    Checking datafusion-datasource v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource)
    Checking unicode-normalization v0.1.25
   Compiling darling v0.23.0
   Compiling pbjson-types v0.8.0
    Checking tokio-rustls v0.26.4
   Compiling async-stream-impl v0.3.6
    Checking datafusion-catalog v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/catalog)
    Checking datafusion-pruning v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/pruning)
   Compiling serde_repr v0.1.20
    Checking num-rational v0.4.2
    Checking num-iter v0.1.45
    Checking openssl-probe v0.2.1
    Checking unicode-bidi v0.3.18
    Checking clap_lex v1.1.0
    Checking unicode-properties v0.1.4
    Checking clap_builder v4.6.0
    Checking num v0.4.3
    Checking stringprep v0.1.5
    Checking rustls-native-certs v0.8.4
    Checking bollard-stubs v1.52.1-rc.29.1.3
    Checking datafusion-datasource-parquet v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-parquet)
    Checking datafusion-physical-optimizer v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/physical-optimizer)
    Checking datafusion-sql v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/sql)
    Checking async-stream v0.3.6
    Checking datafusion-datasource-csv v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-csv)
    Checking datafusion-datasource-arrow v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-arrow)
    Checking datafusion-datasource-json v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-json)
    Checking datafusion-datasource-avro v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/datasource-avro)
    Checking hyper-rustls v0.27.9
   Compiling serde_with_macros v3.21.0
   Compiling substrait v0.63.0
   Compiling parse-display-derive v0.9.1
    Checking datafusion-functions-window v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/functions-window)
    Checking datafusion-optimizer v54.0.0 (/home/runner/work/datafusion/datafusion/datafusion/optimizer)
    Checking hyperlocal v0.9.1
   Compiling clap_derive v4.6.1
    Checking xattr v1.6.1
    Checking hmac v0.13.0
    Checking serde_urlencoded v0.7.1
    Checking pbjson v0.8.0
    Checking rand_core v0.6.4
   Compiling enum-ordinalize-derive v4.3.2
   Compiling fs-err v3.3.0
    Checking filetime v0.2.29
    Checking fallible-iterator v0.2.0
    Checking rustc-hash v2.1.2
    Checking home v0.5.12
   Compiling owo-colors v4.3.0
    Checking byteorder v1.5.0
    Checking astral-tokio-tar v0.6.2
    Checking postgres-protocol v0.6.12
    Checking bollard v0.20.2
error[E0119]: conflicting implementations of trait `From<format_description::parse::format_item::HourBase>` for type `<format_description::parse::format_item::HourBase as format_description::parse::format_item::ModifierValue>::Type`
   --> /home/runner/.cargo/registry/src/index.crates.io-1949cf8c6b5b557f/bollard-0.20.2/src/docker.rs:209:1
    |
209 | impl<T: Into<String>> From<T> for MaybeClientVersion {
    | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
    |
    = note: conflicting implementation in crate `time`:
            - impl From<format_description::parse::format_item::HourBase> for <format_description::parse::format_item::HourBase as format_description::parse::format_item::ModifierValue>::Type;
    = note: upstream crates may add a new impl of trait `std::convert::Into<std::string::String>` for type `time::format_description::parse::format_item::HourBase` in future versions

   Compiling enum-ordinalize v4.3.2
    Checking clap v4.6.1
    Checking rand_chacha v0.3.1
For more information about this error, try `rustc --explain E0119`.
error: could not compile `bollard` (lib) due to 1 previous error
warning: build failed, waiting for other jobs to finish...

-----

error: failed to build rustdoc for crate datafusion-sqllogictest v54.0.0
note: this is usually due to a compilation error in the crate,
      and is unlikely to be a bug in cargo-semver-checks
note: the following command can be used to reproduce the error:
      cargo new --lib example &&
          cd example &&
          echo '[workspace]' >> Cargo.toml &&
          cargo add --path /home/runner/work/datafusion/datafusion/datafusion/sqllogictest --features avro,backtrace,bytes,chrono,datafusion-substrait,parquet_encryption,postgres,postgres-types,substrait,testcontainers-modules,tokio-postgres &&
          cargo check &&
          cargo doc

error: aborting due to failure to build rustdoc for crate datafusion-sqllogictest v54.0.0

@github-actions github-actions Bot added the auto detected api change Auto detected API change label Jun 1, 2026
@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃         lift-selectivity-stats ┃       Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━┩
│ QQuery 1  │ 38.60 / 40.15 ±1.11 / 41.83 ms │ 38.12 / 39.19 ±1.29 / 41.17 ms │    no change │
│ QQuery 2  │ 18.25 / 18.94 ±0.67 / 20.10 ms │ 18.60 / 18.75 ±0.13 / 18.95 ms │    no change │
│ QQuery 3  │ 33.32 / 34.21 ±1.08 / 36.32 ms │ 30.89 / 32.94 ±2.44 / 37.48 ms │    no change │
│ QQuery 4  │ 17.20 / 17.65 ±0.66 / 18.95 ms │ 17.06 / 17.50 ±0.44 / 18.33 ms │    no change │
│ QQuery 5  │ 38.04 / 40.19 ±1.13 / 41.33 ms │ 40.74 / 42.20 ±2.45 / 47.08 ms │ 1.05x slower │
│ QQuery 6  │ 16.08 / 16.16 ±0.07 / 16.28 ms │ 16.09 / 16.73 ±1.11 / 18.93 ms │    no change │
│ QQuery 7  │ 42.55 / 44.68 ±2.22 / 47.81 ms │ 45.16 / 46.48 ±1.73 / 49.80 ms │    no change │
│ QQuery 8  │ 42.44 / 43.33 ±0.89 / 44.53 ms │ 42.49 / 42.82 ±0.28 / 43.32 ms │    no change │
│ QQuery 9  │ 48.18 / 49.13 ±0.98 / 50.46 ms │ 49.06 / 49.77 ±0.51 / 50.47 ms │    no change │
│ QQuery 10 │ 41.65 / 41.84 ±0.21 / 42.23 ms │ 41.93 / 42.78 ±1.37 / 45.51 ms │    no change │
│ QQuery 11 │ 13.18 / 13.51 ±0.33 / 14.08 ms │ 13.02 / 13.32 ±0.28 / 13.79 ms │    no change │
│ QQuery 12 │ 23.50 / 24.05 ±0.34 / 24.37 ms │ 23.81 / 24.04 ±0.21 / 24.40 ms │    no change │
│ QQuery 13 │ 31.80 / 34.24 ±2.04 / 37.51 ms │ 32.99 / 34.81 ±1.63 / 37.50 ms │    no change │
│ QQuery 14 │ 23.34 / 23.65 ±0.22 / 23.92 ms │ 23.54 / 23.73 ±0.12 / 23.88 ms │    no change │
│ QQuery 15 │ 32.38 / 33.30 ±0.90 / 35.00 ms │ 31.43 / 31.78 ±0.44 / 32.51 ms │    no change │
│ QQuery 16 │ 13.98 / 14.07 ±0.09 / 14.24 ms │ 13.83 / 14.03 ±0.16 / 14.31 ms │    no change │
│ QQuery 17 │ 72.51 / 73.77 ±1.24 / 76.01 ms │ 73.86 / 75.71 ±1.90 / 79.27 ms │    no change │
│ QQuery 18 │ 57.89 / 60.26 ±2.14 / 64.27 ms │ 59.46 / 59.99 ±0.28 / 60.24 ms │    no change │
│ QQuery 19 │ 32.56 / 32.89 ±0.38 / 33.61 ms │ 32.71 / 33.12 ±0.54 / 34.17 ms │    no change │
│ QQuery 20 │ 31.90 / 32.26 ±0.32 / 32.79 ms │ 31.92 / 32.21 ±0.24 / 32.51 ms │    no change │
│ QQuery 21 │ 55.45 / 56.90 ±1.26 / 58.57 ms │ 54.49 / 56.90 ±1.29 / 58.32 ms │    no change │
│ QQuery 22 │ 13.94 / 14.24 ±0.35 / 14.83 ms │ 13.59 / 14.17 ±0.46 / 14.93 ms │    no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴──────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                     ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 759.43ms │
│ Total Time (lift-selectivity-stats)   │ 762.96ms │
│ Average Time (HEAD)                   │  34.52ms │
│ Average Time (lift-selectivity-stats) │  34.68ms │
│ Queries Faster                        │        0 │
│ Queries Slower                        │        1 │
│ Queries with No Change                │       21 │
│ Queries with Failure                  │        0 │
└───────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 5.7 GiB
Avg memory 4.9 GiB
CPU user 29.6s
CPU sys 2.2s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 5.7 GiB
Avg memory 4.9 GiB
CPU user 29.9s
CPU sys 2.2s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.90 / 6.41 ±0.87 / 8.16 ms │           5.90 / 6.37 ±0.88 / 8.12 ms │     no change │
│ QQuery 2  │        79.54 / 79.77 ±0.16 / 79.99 ms │        81.11 / 81.52 ±0.25 / 81.79 ms │     no change │
│ QQuery 3  │        28.45 / 28.95 ±0.29 / 29.31 ms │        28.91 / 29.32 ±0.30 / 29.68 ms │     no change │
│ QQuery 4  │     483.36 / 487.62 ±3.22 / 492.72 ms │     487.01 / 490.85 ±3.13 / 496.59 ms │     no change │
│ QQuery 5  │        51.50 / 52.40 ±1.04 / 54.27 ms │        52.25 / 52.73 ±0.53 / 53.72 ms │     no change │
│ QQuery 6  │        36.14 / 36.44 ±0.29 / 36.86 ms │        36.54 / 36.83 ±0.23 / 37.24 ms │     no change │
│ QQuery 7  │        95.37 / 96.57 ±0.77 / 97.70 ms │        95.91 / 96.45 ±0.29 / 96.75 ms │     no change │
│ QQuery 8  │        36.31 / 38.71 ±3.23 / 45.06 ms │        37.82 / 39.53 ±2.72 / 44.95 ms │     no change │
│ QQuery 9  │        54.00 / 54.69 ±0.54 / 55.52 ms │        53.60 / 55.54 ±2.05 / 59.20 ms │     no change │
│ QQuery 10 │        68.71 / 68.99 ±0.33 / 69.61 ms │        68.69 / 68.91 ±0.16 / 69.09 ms │     no change │
│ QQuery 11 │     300.63 / 303.06 ±3.10 / 309.17 ms │     295.87 / 299.86 ±2.69 / 304.15 ms │     no change │
│ QQuery 12 │        28.43 / 28.81 ±0.28 / 29.24 ms │        28.53 / 28.87 ±0.26 / 29.19 ms │     no change │
│ QQuery 13 │     118.99 / 119.74 ±0.64 / 120.56 ms │     119.54 / 120.06 ±0.32 / 120.40 ms │     no change │
│ QQuery 14 │     505.84 / 510.44 ±4.11 / 516.34 ms │    505.29 / 511.56 ±10.27 / 531.95 ms │     no change │
│ QQuery 15 │        57.96 / 59.10 ±1.12 / 61.21 ms │        58.92 / 60.13 ±0.79 / 61.03 ms │     no change │
│ QQuery 16 │           6.79 / 6.95 ±0.14 / 7.19 ms │           7.01 / 7.12 ±0.16 / 7.43 ms │     no change │
│ QQuery 17 │        81.13 / 82.48 ±1.32 / 84.77 ms │        80.81 / 82.01 ±0.97 / 83.70 ms │     no change │
│ QQuery 18 │     123.87 / 124.79 ±0.88 / 126.34 ms │     124.82 / 125.69 ±0.58 / 126.33 ms │     no change │
│ QQuery 19 │        41.80 / 42.60 ±0.64 / 43.71 ms │        42.14 / 42.69 ±0.47 / 43.47 ms │     no change │
│ QQuery 20 │        35.40 / 35.82 ±0.24 / 36.06 ms │        35.98 / 36.36 ±0.35 / 36.91 ms │     no change │
│ QQuery 21 │        16.95 / 17.15 ±0.13 / 17.30 ms │        17.07 / 17.18 ±0.12 / 17.35 ms │     no change │
│ QQuery 22 │        62.03 / 62.94 ±0.90 / 64.39 ms │        62.37 / 62.75 ±0.50 / 63.73 ms │     no change │
│ QQuery 23 │     340.69 / 344.85 ±3.41 / 349.87 ms │     343.40 / 346.64 ±2.72 / 350.29 ms │     no change │
│ QQuery 24 │     224.58 / 225.61 ±1.48 / 228.51 ms │     224.25 / 226.42 ±2.25 / 229.54 ms │     no change │
│ QQuery 25 │     113.57 / 115.02 ±0.99 / 116.64 ms │     113.86 / 116.90 ±2.35 / 120.68 ms │     no change │
│ QQuery 26 │        57.88 / 58.43 ±0.32 / 58.86 ms │        58.39 / 59.03 ±0.51 / 59.64 ms │     no change │
│ QQuery 27 │           6.57 / 6.72 ±0.17 / 7.04 ms │           6.70 / 6.80 ±0.15 / 7.10 ms │     no change │
│ QQuery 28 │        56.57 / 60.29 ±1.86 / 61.34 ms │        60.47 / 61.60 ±0.67 / 62.38 ms │     no change │
│ QQuery 29 │      98.79 / 101.09 ±1.99 / 104.71 ms │       97.92 / 99.46 ±1.69 / 102.26 ms │     no change │
│ QQuery 30 │        31.60 / 32.70 ±0.69 / 33.68 ms │        32.21 / 32.74 ±0.48 / 33.44 ms │     no change │
│ QQuery 31 │     111.52 / 113.02 ±2.19 / 117.37 ms │     111.18 / 112.74 ±1.09 / 114.37 ms │     no change │
│ QQuery 32 │        20.37 / 21.35 ±1.39 / 24.04 ms │        20.11 / 20.35 ±0.30 / 20.90 ms │     no change │
│ QQuery 33 │        38.36 / 39.26 ±0.95 / 40.99 ms │        38.44 / 38.68 ±0.20 / 39.03 ms │     no change │
│ QQuery 34 │          9.23 / 9.68 ±0.48 / 10.45 ms │          9.40 / 9.70 ±0.26 / 10.04 ms │     no change │
│ QQuery 35 │        76.36 / 77.29 ±0.64 / 78.22 ms │        76.03 / 76.53 ±0.38 / 77.11 ms │     no change │
│ QQuery 36 │           5.90 / 6.06 ±0.17 / 6.37 ms │           5.97 / 6.11 ±0.18 / 6.46 ms │     no change │
│ QQuery 37 │           6.71 / 6.85 ±0.15 / 7.10 ms │           6.80 / 6.87 ±0.05 / 6.94 ms │     no change │
│ QQuery 38 │        62.45 / 64.12 ±1.23 / 65.90 ms │        63.03 / 64.27 ±1.11 / 65.85 ms │     no change │
│ QQuery 39 │     450.63 / 455.74 ±3.98 / 460.52 ms │     456.69 / 463.58 ±5.33 / 471.56 ms │     no change │
│ QQuery 40 │        23.43 / 23.87 ±0.60 / 25.05 ms │        22.94 / 23.19 ±0.22 / 23.60 ms │     no change │
│ QQuery 41 │        11.18 / 11.38 ±0.20 / 11.76 ms │        11.45 / 11.57 ±0.13 / 11.80 ms │     no change │
│ QQuery 42 │        23.87 / 24.10 ±0.18 / 24.36 ms │        23.72 / 23.98 ±0.22 / 24.37 ms │     no change │
│ QQuery 43 │           4.79 / 4.89 ±0.15 / 5.18 ms │           4.84 / 4.94 ±0.10 / 5.14 ms │     no change │
│ QQuery 44 │        10.65 / 10.72 ±0.06 / 10.79 ms │        10.77 / 10.84 ±0.04 / 10.87 ms │     no change │
│ QQuery 45 │        38.09 / 39.80 ±2.85 / 45.48 ms │        38.30 / 40.94 ±2.77 / 44.96 ms │     no change │
│ QQuery 46 │        11.45 / 11.64 ±0.13 / 11.84 ms │        11.83 / 12.10 ±0.30 / 12.57 ms │     no change │
│ QQuery 47 │     228.88 / 231.25 ±2.09 / 234.84 ms │     230.39 / 235.31 ±5.12 / 244.83 ms │     no change │
│ QQuery 48 │        95.85 / 96.85 ±0.56 / 97.40 ms │        96.40 / 96.97 ±0.62 / 98.11 ms │     no change │
│ QQuery 49 │        76.89 / 79.24 ±2.19 / 82.70 ms │        77.34 / 79.29 ±2.49 / 84.10 ms │     no change │
│ QQuery 50 │        59.70 / 60.37 ±0.81 / 61.90 ms │        59.23 / 60.08 ±0.59 / 60.82 ms │     no change │
│ QQuery 51 │        90.55 / 92.71 ±1.86 / 95.95 ms │        91.11 / 93.30 ±1.54 / 95.47 ms │     no change │
│ QQuery 52 │        24.05 / 25.58 ±2.74 / 31.06 ms │        23.83 / 24.35 ±0.45 / 25.01 ms │     no change │
│ QQuery 53 │        29.34 / 32.19 ±4.82 / 41.81 ms │        30.21 / 30.65 ±0.31 / 31.11 ms │     no change │
│ QQuery 54 │        55.50 / 56.02 ±0.52 / 56.96 ms │        55.66 / 55.96 ±0.23 / 56.24 ms │     no change │
│ QQuery 55 │        23.34 / 23.66 ±0.30 / 24.20 ms │        23.55 / 23.79 ±0.25 / 24.27 ms │     no change │
│ QQuery 56 │        38.94 / 39.39 ±0.39 / 40.00 ms │        38.97 / 39.67 ±0.58 / 40.61 ms │     no change │
│ QQuery 57 │     176.48 / 178.94 ±3.62 / 186.12 ms │     177.47 / 179.15 ±2.10 / 183.24 ms │     no change │
│ QQuery 58 │     116.27 / 117.90 ±1.85 / 121.31 ms │     118.67 / 120.50 ±1.82 / 123.50 ms │     no change │
│ QQuery 59 │     115.87 / 116.84 ±0.49 / 117.21 ms │     117.92 / 118.72 ±0.48 / 119.29 ms │     no change │
│ QQuery 60 │        39.31 / 39.65 ±0.25 / 40.04 ms │        39.24 / 41.62 ±2.34 / 46.08 ms │     no change │
│ QQuery 61 │        12.76 / 13.07 ±0.18 / 13.28 ms │        13.27 / 13.45 ±0.19 / 13.80 ms │     no change │
│ QQuery 62 │        46.36 / 47.77 ±2.32 / 52.41 ms │        46.11 / 46.61 ±0.30 / 46.99 ms │     no change │
│ QQuery 63 │        30.02 / 30.78 ±0.47 / 31.26 ms │        29.88 / 30.06 ±0.13 / 30.28 ms │     no change │
│ QQuery 64 │     397.24 / 408.19 ±6.43 / 415.10 ms │     397.61 / 402.08 ±4.73 / 408.42 ms │     no change │
│ QQuery 65 │     143.52 / 148.69 ±3.03 / 152.96 ms │     143.99 / 149.24 ±2.95 / 152.12 ms │     no change │
│ QQuery 66 │        78.71 / 79.62 ±0.79 / 80.99 ms │        79.17 / 79.83 ±0.41 / 80.25 ms │     no change │
│ QQuery 67 │     249.66 / 255.71 ±4.77 / 262.11 ms │     243.87 / 251.95 ±5.88 / 258.56 ms │     no change │
│ QQuery 68 │        11.77 / 11.92 ±0.11 / 12.06 ms │        11.92 / 12.17 ±0.25 / 12.63 ms │     no change │
│ QQuery 69 │        63.30 / 66.88 ±3.53 / 72.74 ms │        62.63 / 63.63 ±1.52 / 66.65 ms │     no change │
│ QQuery 70 │     106.55 / 111.23 ±5.22 / 117.87 ms │     105.63 / 107.04 ±1.12 / 108.50 ms │     no change │
│ QQuery 71 │        35.54 / 35.85 ±0.26 / 36.28 ms │        36.04 / 38.98 ±5.25 / 49.48 ms │  1.09x slower │
│ QQuery 72 │ 2152.91 / 2208.05 ±52.28 / 2297.72 ms │ 2066.94 / 2196.25 ±86.55 / 2324.75 ms │     no change │
│ QQuery 73 │          9.45 / 9.86 ±0.54 / 10.88 ms │         9.34 / 10.51 ±1.81 / 14.09 ms │  1.07x slower │
│ QQuery 74 │     169.04 / 173.80 ±3.64 / 179.95 ms │     170.06 / 175.17 ±4.88 / 184.41 ms │     no change │
│ QQuery 75 │     147.29 / 152.50 ±5.35 / 159.78 ms │     147.84 / 149.48 ±0.96 / 150.56 ms │     no change │
│ QQuery 76 │        35.34 / 35.68 ±0.21 / 35.92 ms │        35.19 / 35.38 ±0.20 / 35.72 ms │     no change │
│ QQuery 77 │        60.99 / 63.97 ±3.35 / 70.46 ms │        61.30 / 65.76 ±3.82 / 72.05 ms │     no change │
│ QQuery 78 │     189.39 / 195.43 ±5.19 / 204.20 ms │     189.88 / 195.24 ±3.99 / 200.00 ms │     no change │
│ QQuery 79 │        67.16 / 67.60 ±0.23 / 67.82 ms │        67.39 / 67.96 ±0.57 / 68.89 ms │     no change │
│ QQuery 80 │     101.70 / 103.58 ±1.34 / 105.32 ms │     101.16 / 103.16 ±2.23 / 107.45 ms │     no change │
│ QQuery 81 │        25.56 / 29.77 ±4.50 / 36.08 ms │        25.93 / 28.22 ±3.90 / 36.00 ms │ +1.05x faster │
│ QQuery 82 │        16.37 / 16.79 ±0.24 / 17.00 ms │        16.63 / 16.98 ±0.43 / 17.83 ms │     no change │
│ QQuery 83 │        40.21 / 40.47 ±0.27 / 40.86 ms │        40.14 / 40.70 ±0.60 / 41.81 ms │     no change │
│ QQuery 84 │        34.51 / 34.69 ±0.11 / 34.81 ms │        34.16 / 34.66 ±0.26 / 34.83 ms │     no change │
│ QQuery 85 │     108.64 / 112.89 ±3.26 / 116.77 ms │     108.37 / 112.43 ±3.77 / 118.61 ms │     no change │
│ QQuery 86 │        24.95 / 25.48 ±0.56 / 26.56 ms │        25.18 / 25.69 ±0.38 / 26.16 ms │     no change │
│ QQuery 87 │        64.70 / 65.38 ±0.82 / 66.88 ms │        63.72 / 64.99 ±0.97 / 66.42 ms │     no change │
│ QQuery 88 │        62.60 / 64.61 ±2.38 / 69.28 ms │        61.72 / 62.37 ±0.60 / 63.25 ms │     no change │
│ QQuery 89 │        36.67 / 38.82 ±2.44 / 42.21 ms │        36.56 / 40.19 ±3.70 / 44.99 ms │     no change │
│ QQuery 90 │        17.12 / 17.27 ±0.22 / 17.71 ms │        16.97 / 17.17 ±0.22 / 17.52 ms │     no change │
│ QQuery 91 │        45.14 / 45.65 ±0.59 / 46.74 ms │        45.11 / 45.92 ±0.43 / 46.25 ms │     no change │
│ QQuery 92 │        30.03 / 30.45 ±0.39 / 31.10 ms │        30.15 / 30.41 ±0.24 / 30.84 ms │     no change │
│ QQuery 93 │        50.87 / 52.28 ±1.02 / 53.43 ms │        50.97 / 51.93 ±0.91 / 53.06 ms │     no change │
│ QQuery 94 │        39.32 / 40.51 ±1.57 / 43.55 ms │        38.45 / 41.05 ±2.78 / 44.75 ms │     no change │
│ QQuery 95 │        85.11 / 87.23 ±1.64 / 89.91 ms │        85.66 / 86.80 ±1.24 / 89.09 ms │     no change │
│ QQuery 96 │        24.12 / 24.43 ±0.32 / 25.03 ms │        24.47 / 24.88 ±0.32 / 25.27 ms │     no change │
│ QQuery 97 │        46.08 / 46.99 ±1.44 / 49.85 ms │        46.31 / 46.64 ±0.23 / 46.87 ms │     no change │
│ QQuery 98 │        42.92 / 44.38 ±0.99 / 45.67 ms │        43.75 / 44.47 ±0.55 / 45.23 ms │     no change │
│ QQuery 99 │        69.69 / 70.28 ±0.39 / 70.82 ms │        70.12 / 70.56 ±0.35 / 70.98 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10508.09ms │
│ Total Time (lift-selectivity-stats)   │ 10507.70ms │
│ Average Time (HEAD)                   │   106.14ms │
│ Average Time (lift-selectivity-stats) │   106.14ms │
│ Queries Faster                        │          1 │
│ Queries Slower                        │          2 │
│ Queries with No Change                │         96 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 7.0 GiB
Avg memory 6.2 GiB
CPU user 239.3s
CPU sys 6.9s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 7.1 GiB
Avg memory 6.3 GiB
CPU user 237.8s
CPU sys 6.4s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.18 / 3.37 ±4.28 / 11.93 ms │          1.17 / 3.38 ±4.30 / 11.99 ms │     no change │
│ QQuery 1  │        12.25 / 12.75 ±0.34 / 13.16 ms │        12.30 / 12.63 ±0.19 / 12.85 ms │     no change │
│ QQuery 2  │        35.68 / 36.24 ±0.65 / 37.51 ms │        35.39 / 35.89 ±0.35 / 36.49 ms │     no change │
│ QQuery 3  │        31.44 / 32.49 ±0.95 / 34.11 ms │        30.95 / 31.15 ±0.15 / 31.35 ms │     no change │
│ QQuery 4  │     232.58 / 234.40 ±2.57 / 239.43 ms │     229.42 / 234.55 ±3.29 / 239.12 ms │     no change │
│ QQuery 5  │     277.10 / 279.65 ±2.11 / 282.96 ms │     280.52 / 282.27 ±1.48 / 284.81 ms │     no change │
│ QQuery 6  │           1.19 / 1.33 ±0.22 / 1.78 ms │           1.19 / 1.34 ±0.24 / 1.83 ms │     no change │
│ QQuery 7  │        13.60 / 13.71 ±0.07 / 13.80 ms │        13.65 / 13.82 ±0.11 / 13.97 ms │     no change │
│ QQuery 8  │     325.45 / 330.75 ±3.56 / 334.04 ms │     332.21 / 333.67 ±1.04 / 335.12 ms │     no change │
│ QQuery 9  │     466.36 / 472.90 ±5.65 / 481.40 ms │     469.80 / 483.74 ±9.77 / 498.56 ms │     no change │
│ QQuery 10 │        70.38 / 71.34 ±0.65 / 72.31 ms │        70.92 / 77.00 ±8.62 / 94.01 ms │  1.08x slower │
│ QQuery 11 │        81.83 / 84.98 ±5.16 / 95.27 ms │        82.03 / 83.31 ±1.05 / 85.01 ms │     no change │
│ QQuery 12 │     271.56 / 276.31 ±4.13 / 281.35 ms │     274.63 / 282.71 ±5.37 / 289.85 ms │     no change │
│ QQuery 13 │     378.59 / 391.29 ±9.15 / 405.80 ms │     380.03 / 385.98 ±7.89 / 400.66 ms │     no change │
│ QQuery 14 │    286.66 / 298.31 ±10.58 / 315.00 ms │    291.19 / 305.57 ±15.54 / 334.61 ms │     no change │
│ QQuery 15 │     274.09 / 280.46 ±4.13 / 285.50 ms │    279.63 / 297.92 ±22.65 / 341.50 ms │  1.06x slower │
│ QQuery 16 │     626.69 / 636.47 ±7.96 / 648.93 ms │    624.05 / 642.15 ±11.84 / 660.82 ms │     no change │
│ QQuery 17 │     629.32 / 644.33 ±9.03 / 652.67 ms │    636.04 / 648.91 ±10.53 / 666.05 ms │     no change │
│ QQuery 18 │ 1275.69 / 1300.83 ±17.59 / 1319.77 ms │ 1290.19 / 1311.60 ±16.32 / 1334.63 ms │     no change │
│ QQuery 19 │        27.74 / 29.70 ±3.07 / 35.80 ms │        27.98 / 31.11 ±5.57 / 42.22 ms │     no change │
│ QQuery 20 │    522.94 / 542.46 ±16.87 / 569.25 ms │     522.83 / 532.03 ±7.87 / 542.73 ms │     no change │
│ QQuery 21 │     595.89 / 604.86 ±6.29 / 614.16 ms │     596.79 / 605.63 ±9.20 / 621.60 ms │     no change │
│ QQuery 22 │  1078.45 / 1088.12 ±6.48 / 1096.06 ms │ 1073.11 / 1084.34 ±10.73 / 1104.12 ms │     no change │
│ QQuery 23 │ 3251.99 / 3297.64 ±32.24 / 3342.42 ms │ 3261.45 / 3292.63 ±19.12 / 3319.73 ms │     no change │
│ QQuery 24 │        41.85 / 43.84 ±3.53 / 50.89 ms │        42.57 / 44.58 ±1.93 / 47.09 ms │     no change │
│ QQuery 25 │     112.07 / 114.18 ±1.66 / 116.02 ms │    112.19 / 122.12 ±14.15 / 149.26 ms │  1.07x slower │
│ QQuery 26 │        41.98 / 44.79 ±2.47 / 47.86 ms │        42.45 / 44.64 ±2.90 / 50.26 ms │     no change │
│ QQuery 27 │     669.13 / 681.49 ±8.32 / 694.31 ms │     681.67 / 685.68 ±2.37 / 688.32 ms │     no change │
│ QQuery 28 │ 3068.44 / 3102.79 ±18.08 / 3117.97 ms │ 3063.72 / 3084.14 ±28.99 / 3141.29 ms │     no change │
│ QQuery 29 │        40.45 / 45.87 ±5.97 / 53.88 ms │       40.54 / 46.27 ±10.61 / 67.46 ms │     no change │
│ QQuery 30 │     305.61 / 313.89 ±4.38 / 317.61 ms │    305.09 / 321.45 ±10.30 / 333.93 ms │     no change │
│ QQuery 31 │     291.34 / 298.47 ±6.87 / 309.26 ms │     300.32 / 307.90 ±6.71 / 316.02 ms │     no change │
│ QQuery 32 │   958.58 / 997.66 ±26.08 / 1035.11 ms │  999.36 / 1042.47 ±29.48 / 1086.19 ms │     no change │
│ QQuery 33 │ 1503.09 / 1535.50 ±28.03 / 1569.85 ms │ 1502.73 / 1532.15 ±27.30 / 1579.36 ms │     no change │
│ QQuery 34 │ 1535.22 / 1565.03 ±26.21 / 1609.06 ms │ 1509.49 / 1556.33 ±30.97 / 1606.83 ms │     no change │
│ QQuery 35 │    293.25 / 319.09 ±31.85 / 371.80 ms │    288.65 / 302.89 ±14.68 / 328.68 ms │ +1.05x faster │
│ QQuery 36 │        68.12 / 75.88 ±7.47 / 85.25 ms │       66.25 / 77.04 ±10.43 / 96.38 ms │     no change │
│ QQuery 37 │        36.14 / 40.14 ±4.70 / 47.04 ms │        35.82 / 38.61 ±3.93 / 46.32 ms │     no change │
│ QQuery 38 │        40.78 / 45.97 ±6.39 / 58.57 ms │        42.98 / 45.67 ±3.80 / 52.96 ms │     no change │
│ QQuery 39 │    142.78 / 159.37 ±14.50 / 185.45 ms │     155.58 / 160.28 ±4.45 / 167.13 ms │     no change │
│ QQuery 40 │        13.94 / 16.25 ±3.90 / 24.04 ms │        14.02 / 14.52 ±0.36 / 14.98 ms │ +1.12x faster │
│ QQuery 41 │        13.91 / 14.48 ±0.55 / 15.45 ms │        13.62 / 15.62 ±3.61 / 22.82 ms │  1.08x slower │
│ QQuery 42 │        13.17 / 15.15 ±3.38 / 21.90 ms │        13.28 / 13.47 ±0.19 / 13.82 ms │ +1.12x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 20394.52ms │
│ Total Time (lift-selectivity-stats)   │ 20469.15ms │
│ Average Time (HEAD)                   │   474.29ms │
│ Average Time (lift-selectivity-stats) │   476.03ms │
│ Queries Faster                        │          3 │
│ Queries Slower                        │          4 │
│ Queries with No Change                │         36 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 105.0s
Peak memory 30.7 GiB
Avg memory 23.3 GiB
CPU user 1042.7s
CPU sys 80.5s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 30.5 GiB
Avg memory 22.9 GiB
CPU user 1044.9s
CPU sys 81.6s
Peak spill 0 B

File an issue against this benchmark runner

@adriangb

adriangb commented Jun 1, 2026

Copy link
Copy Markdown
Contributor Author

run benchmarks

env:
  DATAFUSION_EXECUTION_ADAPTIVE_FILTER_REORDERING: true

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593483789-393-l7kzn 6.12.68+ #1 SMP Wed Apr 1 02:23:28 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593483789-394-mr9rk 6.12.68+ #1 SMP Wed Apr 1 02:23:28 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: tpch
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593483789-392-9q7fl 6.12.68+ #1 SMP Wed Apr 1 02:23:28 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃         lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 37.96 / 39.80 ±2.12 / 43.53 ms │ 38.10 / 38.80 ±1.03 / 40.85 ms │     no change │
│ QQuery 2  │ 18.55 / 20.75 ±3.43 / 27.49 ms │ 18.08 / 18.65 ±0.46 / 19.36 ms │ +1.11x faster │
│ QQuery 3  │ 30.88 / 32.37 ±1.26 / 34.09 ms │ 30.43 / 33.54 ±1.75 / 35.84 ms │     no change │
│ QQuery 4  │ 16.88 / 17.47 ±0.67 / 18.77 ms │ 17.13 / 17.26 ±0.11 / 17.46 ms │     no change │
│ QQuery 5  │ 37.22 / 39.35 ±1.43 / 40.64 ms │ 37.75 / 39.31 ±1.31 / 40.66 ms │     no change │
│ QQuery 6  │ 15.90 / 16.09 ±0.21 / 16.46 ms │ 15.84 / 16.12 ±0.29 / 16.61 ms │     no change │
│ QQuery 7  │ 42.77 / 44.59 ±1.18 / 46.04 ms │ 44.74 / 46.06 ±1.02 / 47.08 ms │     no change │
│ QQuery 8  │ 42.30 / 42.69 ±0.26 / 43.01 ms │ 42.36 / 42.66 ±0.17 / 42.88 ms │     no change │
│ QQuery 9  │ 48.06 / 49.59 ±0.84 / 50.60 ms │ 48.35 / 49.28 ±0.70 / 50.50 ms │     no change │
│ QQuery 10 │ 41.60 / 42.05 ±0.60 / 43.25 ms │ 41.76 / 42.26 ±0.47 / 43.16 ms │     no change │
│ QQuery 11 │ 12.89 / 13.10 ±0.11 / 13.20 ms │ 12.88 / 13.05 ±0.15 / 13.31 ms │     no change │
│ QQuery 12 │ 23.80 / 24.70 ±0.77 / 25.87 ms │ 20.58 / 20.86 ±0.18 / 21.11 ms │ +1.18x faster │
│ QQuery 13 │ 31.71 / 33.06 ±1.31 / 35.55 ms │ 32.23 / 33.56 ±1.16 / 35.41 ms │     no change │
│ QQuery 14 │ 23.35 / 23.61 ±0.17 / 23.87 ms │ 23.44 / 23.66 ±0.15 / 23.84 ms │     no change │
│ QQuery 15 │ 30.82 / 31.50 ±0.88 / 33.21 ms │ 31.67 / 32.31 ±0.80 / 33.86 ms │     no change │
│ QQuery 16 │ 13.76 / 14.07 ±0.18 / 14.30 ms │ 14.24 / 14.38 ±0.10 / 14.54 ms │     no change │
│ QQuery 17 │ 72.86 / 73.25 ±0.22 / 73.56 ms │ 71.84 / 73.39 ±1.16 / 75.41 ms │     no change │
│ QQuery 18 │ 57.52 / 59.20 ±1.18 / 60.76 ms │ 57.76 / 59.08 ±1.02 / 60.73 ms │     no change │
│ QQuery 19 │ 32.60 / 33.21 ±0.77 / 34.73 ms │ 32.53 / 33.36 ±0.78 / 34.71 ms │     no change │
│ QQuery 20 │ 31.65 / 31.74 ±0.05 / 31.79 ms │ 31.87 / 32.07 ±0.19 / 32.34 ms │     no change │
│ QQuery 21 │ 55.22 / 56.42 ±1.08 / 58.30 ms │ 54.62 / 56.95 ±1.67 / 58.98 ms │     no change │
│ QQuery 22 │ 13.94 / 14.33 ±0.49 / 15.17 ms │ 13.72 / 13.79 ±0.06 / 13.89 ms │     no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                     ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 752.95ms │
│ Total Time (lift-selectivity-stats)   │ 750.40ms │
│ Average Time (HEAD)                   │  34.22ms │
│ Average Time (lift-selectivity-stats) │  34.11ms │
│ Queries Faster                        │        2 │
│ Queries Slower                        │        0 │
│ Queries with No Change                │       20 │
│ Queries with Failure                  │        0 │
└───────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 5.7 GiB
Avg memory 4.9 GiB
CPU user 29.4s
CPU sys 2.2s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 5.7 GiB
Avg memory 4.9 GiB
CPU user 29.5s
CPU sys 2.1s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.87 / 6.39 ±0.91 / 8.20 ms │           5.81 / 6.29 ±0.85 / 7.98 ms │     no change │
│ QQuery 2  │        80.40 / 80.49 ±0.14 / 80.77 ms │        80.75 / 80.99 ±0.21 / 81.29 ms │     no change │
│ QQuery 3  │        28.90 / 29.42 ±0.27 / 29.67 ms │        29.27 / 29.51 ±0.23 / 29.93 ms │     no change │
│ QQuery 4  │     497.61 / 504.12 ±5.31 / 513.47 ms │     502.60 / 510.32 ±6.55 / 518.41 ms │     no change │
│ QQuery 5  │        51.86 / 52.26 ±0.48 / 53.16 ms │        53.08 / 53.48 ±0.48 / 54.42 ms │     no change │
│ QQuery 6  │        36.63 / 37.03 ±0.27 / 37.44 ms │        36.43 / 37.16 ±0.40 / 37.49 ms │     no change │
│ QQuery 7  │       95.79 / 97.23 ±1.93 / 100.85 ms │       97.34 / 99.85 ±3.46 / 106.65 ms │     no change │
│ QQuery 8  │        37.66 / 38.25 ±0.43 / 38.91 ms │        37.69 / 37.94 ±0.16 / 38.15 ms │     no change │
│ QQuery 9  │        52.98 / 55.00 ±1.24 / 56.50 ms │        54.86 / 55.82 ±0.87 / 57.26 ms │     no change │
│ QQuery 10 │        68.86 / 69.26 ±0.29 / 69.78 ms │        69.27 / 69.77 ±0.29 / 70.12 ms │     no change │
│ QQuery 11 │     300.92 / 310.94 ±6.18 / 319.37 ms │     313.07 / 317.61 ±2.62 / 320.30 ms │     no change │
│ QQuery 12 │        28.84 / 29.28 ±0.29 / 29.74 ms │        29.19 / 29.54 ±0.25 / 29.95 ms │     no change │
│ QQuery 13 │     119.21 / 120.87 ±1.80 / 123.82 ms │     121.76 / 123.99 ±3.37 / 130.67 ms │     no change │
│ QQuery 14 │     505.56 / 508.47 ±2.72 / 512.47 ms │     513.36 / 517.06 ±2.91 / 521.43 ms │     no change │
│ QQuery 15 │        59.55 / 60.52 ±0.67 / 61.58 ms │        61.32 / 63.83 ±3.07 / 68.87 ms │  1.05x slower │
│ QQuery 16 │           6.83 / 7.02 ±0.24 / 7.45 ms │           6.88 / 7.04 ±0.16 / 7.34 ms │     no change │
│ QQuery 17 │        82.21 / 84.80 ±4.22 / 93.21 ms │        83.09 / 83.78 ±0.86 / 85.44 ms │     no change │
│ QQuery 18 │     126.52 / 127.70 ±1.18 / 129.44 ms │     128.02 / 129.38 ±1.46 / 132.09 ms │     no change │
│ QQuery 19 │        42.33 / 42.46 ±0.08 / 42.58 ms │        43.01 / 43.25 ±0.30 / 43.84 ms │     no change │
│ QQuery 20 │        36.27 / 36.77 ±0.28 / 37.06 ms │        35.76 / 36.42 ±0.39 / 36.94 ms │     no change │
│ QQuery 21 │        17.21 / 17.42 ±0.15 / 17.61 ms │        17.11 / 17.29 ±0.16 / 17.53 ms │     no change │
│ QQuery 22 │        63.20 / 63.59 ±0.28 / 64.00 ms │        62.45 / 62.87 ±0.22 / 63.06 ms │     no change │
│ QQuery 23 │     346.34 / 351.02 ±4.76 / 357.49 ms │     343.95 / 350.73 ±4.87 / 358.19 ms │     no change │
│ QQuery 24 │     225.98 / 228.74 ±4.17 / 236.96 ms │     225.35 / 230.30 ±4.32 / 235.86 ms │     no change │
│ QQuery 25 │     114.63 / 117.57 ±2.41 / 120.86 ms │     114.18 / 115.52 ±1.45 / 118.21 ms │     no change │
│ QQuery 26 │        58.62 / 58.98 ±0.35 / 59.53 ms │        59.17 / 59.56 ±0.36 / 60.08 ms │     no change │
│ QQuery 27 │           6.63 / 6.79 ±0.15 / 7.08 ms │           6.54 / 6.69 ±0.16 / 6.99 ms │     no change │
│ QQuery 28 │        56.40 / 60.62 ±2.12 / 62.02 ms │        56.83 / 61.81 ±5.10 / 71.05 ms │     no change │
│ QQuery 29 │      97.97 / 101.08 ±3.16 / 107.13 ms │       97.94 / 99.09 ±0.91 / 100.43 ms │     no change │
│ QQuery 30 │        32.49 / 32.89 ±0.29 / 33.31 ms │        32.79 / 33.17 ±0.30 / 33.62 ms │     no change │
│ QQuery 31 │     112.37 / 114.23 ±2.24 / 118.32 ms │     113.08 / 115.06 ±2.13 / 119.01 ms │     no change │
│ QQuery 32 │        20.34 / 20.81 ±0.34 / 21.34 ms │        20.32 / 20.59 ±0.23 / 21.01 ms │     no change │
│ QQuery 33 │        39.08 / 39.25 ±0.17 / 39.58 ms │        38.38 / 38.82 ±0.41 / 39.49 ms │     no change │
│ QQuery 34 │          9.47 / 9.97 ±0.38 / 10.37 ms │           9.54 / 9.70 ±0.15 / 9.93 ms │     no change │
│ QQuery 35 │        77.70 / 78.68 ±0.94 / 79.98 ms │        77.14 / 79.59 ±2.51 / 84.00 ms │     no change │
│ QQuery 36 │           5.97 / 6.11 ±0.17 / 6.42 ms │           5.95 / 6.06 ±0.17 / 6.40 ms │     no change │
│ QQuery 37 │          7.04 / 8.13 ±1.99 / 12.11 ms │           6.83 / 6.99 ±0.11 / 7.18 ms │ +1.16x faster │
│ QQuery 38 │        64.14 / 64.86 ±1.02 / 66.83 ms │        62.56 / 64.16 ±1.00 / 65.57 ms │     no change │
│ QQuery 39 │     454.99 / 461.63 ±5.33 / 468.22 ms │     456.56 / 460.55 ±2.93 / 463.53 ms │     no change │
│ QQuery 40 │        23.34 / 23.61 ±0.38 / 24.35 ms │        23.33 / 23.48 ±0.09 / 23.60 ms │     no change │
│ QQuery 41 │        11.38 / 11.61 ±0.27 / 12.13 ms │        11.43 / 11.60 ±0.19 / 11.95 ms │     no change │
│ QQuery 42 │        24.04 / 24.22 ±0.12 / 24.38 ms │        23.93 / 24.33 ±0.34 / 24.91 ms │     no change │
│ QQuery 43 │          4.82 / 6.60 ±3.20 / 12.99 ms │           4.88 / 5.00 ±0.13 / 5.22 ms │ +1.32x faster │
│ QQuery 44 │        10.95 / 12.42 ±2.40 / 17.21 ms │        10.86 / 11.04 ±0.15 / 11.23 ms │ +1.12x faster │
│ QQuery 45 │        39.23 / 40.18 ±0.72 / 41.18 ms │        39.16 / 39.72 ±0.43 / 40.30 ms │     no change │
│ QQuery 46 │        11.88 / 12.31 ±0.66 / 13.63 ms │        11.66 / 11.98 ±0.23 / 12.37 ms │     no change │
│ QQuery 47 │     233.58 / 238.95 ±4.87 / 247.21 ms │     232.33 / 235.60 ±2.69 / 238.66 ms │     no change │
│ QQuery 48 │        96.95 / 97.23 ±0.20 / 97.51 ms │      98.22 / 100.30 ±3.20 / 106.68 ms │     no change │
│ QQuery 49 │        78.34 / 79.35 ±1.82 / 82.98 ms │        78.23 / 79.22 ±1.00 / 80.52 ms │     no change │
│ QQuery 50 │        59.63 / 60.05 ±0.31 / 60.45 ms │        59.90 / 60.31 ±0.22 / 60.51 ms │     no change │
│ QQuery 51 │       95.27 / 97.53 ±1.83 / 100.36 ms │        93.71 / 95.97 ±1.64 / 98.38 ms │     no change │
│ QQuery 52 │        24.45 / 24.79 ±0.24 / 25.04 ms │        24.85 / 25.13 ±0.34 / 25.73 ms │     no change │
│ QQuery 53 │        29.90 / 30.02 ±0.12 / 30.20 ms │        30.02 / 30.39 ±0.29 / 30.92 ms │     no change │
│ QQuery 54 │        55.97 / 56.33 ±0.35 / 56.98 ms │        55.59 / 56.24 ±0.55 / 56.90 ms │     no change │
│ QQuery 55 │        23.80 / 24.08 ±0.18 / 24.30 ms │        23.79 / 23.90 ±0.09 / 24.04 ms │     no change │
│ QQuery 56 │        39.22 / 43.08 ±7.12 / 57.30 ms │        38.95 / 40.24 ±1.97 / 44.15 ms │ +1.07x faster │
│ QQuery 57 │     175.50 / 177.47 ±1.25 / 179.15 ms │     176.75 / 179.15 ±2.80 / 183.77 ms │     no change │
│ QQuery 58 │     116.37 / 119.38 ±3.49 / 125.78 ms │     119.10 / 119.99 ±1.43 / 122.83 ms │     no change │
│ QQuery 59 │     117.57 / 119.26 ±2.87 / 124.98 ms │     118.04 / 120.81 ±3.32 / 127.20 ms │     no change │
│ QQuery 60 │        39.51 / 40.41 ±0.61 / 41.39 ms │        39.77 / 40.41 ±0.55 / 41.31 ms │     no change │
│ QQuery 61 │        13.05 / 13.27 ±0.22 / 13.62 ms │        13.14 / 13.21 ±0.08 / 13.34 ms │     no change │
│ QQuery 62 │        45.57 / 46.10 ±0.30 / 46.41 ms │        47.03 / 47.23 ±0.15 / 47.46 ms │     no change │
│ QQuery 63 │        29.78 / 30.23 ±0.36 / 30.87 ms │        30.16 / 30.40 ±0.17 / 30.56 ms │     no change │
│ QQuery 64 │    395.95 / 409.41 ±14.28 / 428.22 ms │     399.31 / 406.61 ±4.95 / 412.75 ms │     no change │
│ QQuery 65 │     145.01 / 151.75 ±5.59 / 159.22 ms │     145.19 / 151.83 ±3.59 / 155.38 ms │     no change │
│ QQuery 66 │        79.38 / 80.48 ±0.63 / 81.12 ms │        80.09 / 83.26 ±5.35 / 93.94 ms │     no change │
│ QQuery 67 │     251.95 / 258.05 ±4.50 / 265.60 ms │     253.13 / 258.35 ±5.51 / 267.75 ms │     no change │
│ QQuery 68 │        12.13 / 12.39 ±0.24 / 12.80 ms │        11.85 / 12.06 ±0.20 / 12.35 ms │     no change │
│ QQuery 69 │        62.88 / 63.56 ±0.67 / 64.77 ms │        63.16 / 63.60 ±0.33 / 64.15 ms │     no change │
│ QQuery 70 │    105.01 / 115.49 ±11.01 / 131.54 ms │     105.38 / 107.05 ±1.09 / 108.72 ms │ +1.08x faster │
│ QQuery 71 │        35.74 / 36.73 ±0.58 / 37.43 ms │        35.82 / 39.62 ±5.98 / 51.54 ms │  1.08x slower │
│ QQuery 72 │ 2100.01 / 2170.55 ±68.28 / 2259.28 ms │ 2153.09 / 2246.72 ±56.21 / 2326.64 ms │     no change │
│ QQuery 73 │           9.34 / 9.55 ±0.23 / 9.98 ms │         9.52 / 10.00 ±0.43 / 10.69 ms │     no change │
│ QQuery 74 │     172.82 / 176.91 ±3.37 / 182.62 ms │     177.00 / 180.93 ±6.55 / 193.98 ms │     no change │
│ QQuery 75 │     148.07 / 149.71 ±1.60 / 152.78 ms │     149.61 / 152.02 ±3.46 / 158.84 ms │     no change │
│ QQuery 76 │        35.49 / 35.81 ±0.17 / 35.95 ms │        35.78 / 36.11 ±0.27 / 36.51 ms │     no change │
│ QQuery 77 │        62.70 / 66.15 ±5.51 / 77.13 ms │        61.85 / 62.48 ±0.46 / 63.21 ms │ +1.06x faster │
│ QQuery 78 │     188.40 / 197.01 ±6.63 / 208.76 ms │     192.08 / 195.91 ±4.20 / 201.38 ms │     no change │
│ QQuery 79 │        67.20 / 67.66 ±0.25 / 67.90 ms │        67.73 / 69.63 ±3.17 / 75.93 ms │     no change │
│ QQuery 80 │     101.00 / 105.12 ±4.66 / 114.22 ms │     102.35 / 105.30 ±3.06 / 110.84 ms │     no change │
│ QQuery 81 │        25.82 / 26.32 ±0.42 / 27.09 ms │        25.81 / 26.05 ±0.17 / 26.24 ms │     no change │
│ QQuery 82 │        16.48 / 16.94 ±0.52 / 17.93 ms │        16.58 / 16.95 ±0.37 / 17.63 ms │     no change │
│ QQuery 83 │        39.93 / 40.37 ±0.42 / 40.97 ms │        40.33 / 43.03 ±3.63 / 50.18 ms │  1.07x slower │
│ QQuery 84 │        34.87 / 35.13 ±0.26 / 35.59 ms │        34.88 / 36.84 ±3.04 / 42.90 ms │     no change │
│ QQuery 85 │     109.72 / 114.76 ±5.78 / 125.66 ms │     109.54 / 110.92 ±1.09 / 112.65 ms │     no change │
│ QQuery 86 │        25.16 / 25.70 ±0.37 / 26.32 ms │        25.21 / 25.49 ±0.32 / 26.01 ms │     no change │
│ QQuery 87 │        64.77 / 65.42 ±0.37 / 65.85 ms │        64.13 / 66.74 ±2.80 / 71.92 ms │     no change │
│ QQuery 88 │        62.98 / 65.72 ±3.72 / 73.07 ms │        62.04 / 62.92 ±0.67 / 64.11 ms │     no change │
│ QQuery 89 │        36.27 / 37.03 ±0.52 / 37.76 ms │        36.03 / 36.65 ±0.37 / 37.17 ms │     no change │
│ QQuery 90 │        16.91 / 17.03 ±0.09 / 17.15 ms │        16.87 / 17.08 ±0.16 / 17.28 ms │     no change │
│ QQuery 91 │        44.58 / 45.77 ±0.63 / 46.43 ms │        45.19 / 46.70 ±2.23 / 51.12 ms │     no change │
│ QQuery 92 │        30.45 / 30.85 ±0.49 / 31.80 ms │        30.29 / 32.42 ±3.15 / 38.62 ms │  1.05x slower │
│ QQuery 93 │        51.25 / 52.29 ±1.24 / 54.66 ms │        51.71 / 52.79 ±0.82 / 54.23 ms │     no change │
│ QQuery 94 │        40.04 / 41.78 ±2.46 / 46.64 ms │        39.18 / 39.53 ±0.41 / 40.20 ms │ +1.06x faster │
│ QQuery 95 │        85.23 / 86.75 ±0.99 / 88.21 ms │        84.24 / 86.77 ±2.22 / 90.55 ms │     no change │
│ QQuery 96 │        24.61 / 24.81 ±0.18 / 25.02 ms │        24.37 / 25.25 ±1.30 / 27.80 ms │     no change │
│ QQuery 97 │        46.75 / 47.98 ±1.43 / 50.68 ms │        46.57 / 47.27 ±0.40 / 47.68 ms │     no change │
│ QQuery 98 │        44.15 / 45.97 ±2.70 / 51.30 ms │        43.22 / 43.51 ±0.45 / 44.40 ms │ +1.06x faster │
│ QQuery 99 │        69.47 / 70.02 ±0.39 / 70.61 ms │        70.80 / 71.13 ±0.30 / 71.69 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10566.11ms │
│ Total Time (lift-selectivity-stats)   │ 10666.78ms │
│ Average Time (HEAD)                   │   106.73ms │
│ Average Time (lift-selectivity-stats) │   107.75ms │
│ Queries Faster                        │          8 │
│ Queries Slower                        │          4 │
│ Queries with No Change                │         87 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 6.8 GiB
Avg memory 6.2 GiB
CPU user 240.4s
CPU sys 6.8s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 6.8 GiB
Avg memory 6.3 GiB
CPU user 240.3s
CPU sys 6.7s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.18 / 3.38 ±4.29 / 11.96 ms │          1.16 / 3.36 ±4.30 / 11.96 ms │     no change │
│ QQuery 1  │        12.46 / 12.64 ±0.12 / 12.79 ms │        12.11 / 12.44 ±0.21 / 12.68 ms │     no change │
│ QQuery 2  │        35.82 / 36.31 ±0.30 / 36.62 ms │        35.83 / 36.23 ±0.32 / 36.73 ms │     no change │
│ QQuery 3  │        30.74 / 31.31 ±0.56 / 32.37 ms │        30.63 / 31.42 ±0.76 / 32.67 ms │     no change │
│ QQuery 4  │     222.56 / 227.15 ±2.94 / 230.34 ms │     227.05 / 231.04 ±2.39 / 234.37 ms │     no change │
│ QQuery 5  │     273.77 / 277.27 ±2.74 / 280.77 ms │     274.01 / 279.53 ±4.36 / 287.26 ms │     no change │
│ QQuery 6  │           1.19 / 1.34 ±0.22 / 1.78 ms │           1.16 / 1.32 ±0.23 / 1.76 ms │     no change │
│ QQuery 7  │        13.66 / 13.87 ±0.15 / 14.09 ms │        13.48 / 13.61 ±0.10 / 13.74 ms │     no change │
│ QQuery 8  │     324.12 / 331.26 ±5.46 / 337.88 ms │     325.80 / 331.23 ±4.56 / 337.43 ms │     no change │
│ QQuery 9  │     457.86 / 469.37 ±8.98 / 479.74 ms │     458.88 / 473.14 ±9.98 / 488.38 ms │     no change │
│ QQuery 10 │        69.88 / 70.84 ±0.81 / 72.02 ms │        69.86 / 70.42 ±0.73 / 71.85 ms │     no change │
│ QQuery 11 │        82.23 / 84.94 ±4.30 / 93.50 ms │        80.67 / 84.22 ±2.40 / 88.21 ms │     no change │
│ QQuery 12 │     268.15 / 275.01 ±5.12 / 280.92 ms │     272.40 / 277.06 ±4.51 / 284.84 ms │     no change │
│ QQuery 13 │    368.44 / 386.64 ±15.50 / 407.35 ms │    365.72 / 380.17 ±11.85 / 394.45 ms │     no change │
│ QQuery 14 │     284.08 / 288.14 ±3.99 / 294.29 ms │     283.95 / 289.28 ±5.13 / 296.08 ms │     no change │
│ QQuery 15 │     270.76 / 281.64 ±8.50 / 293.21 ms │     273.57 / 282.06 ±5.47 / 290.40 ms │     no change │
│ QQuery 16 │    613.97 / 633.30 ±14.55 / 655.44 ms │    633.54 / 650.56 ±15.78 / 678.54 ms │     no change │
│ QQuery 17 │    627.57 / 642.36 ±15.38 / 672.10 ms │     633.27 / 638.88 ±5.81 / 647.16 ms │     no change │
│ QQuery 18 │ 1286.56 / 1298.98 ±17.57 / 1333.29 ms │ 1248.48 / 1308.50 ±52.34 / 1405.38 ms │     no change │
│ QQuery 19 │        27.83 / 28.50 ±0.48 / 29.16 ms │        27.71 / 30.58 ±4.74 / 40.04 ms │  1.07x slower │
│ QQuery 20 │    520.62 / 528.79 ±10.06 / 548.20 ms │    515.63 / 544.83 ±41.82 / 627.94 ms │     no change │
│ QQuery 21 │     597.20 / 600.28 ±2.46 / 603.86 ms │     596.67 / 603.40 ±8.35 / 619.49 ms │     no change │
│ QQuery 22 │ 1068.45 / 1082.17 ±11.96 / 1099.67 ms │ 1068.38 / 1078.88 ±10.23 / 1098.45 ms │     no change │
│ QQuery 23 │ 3204.98 / 3239.96 ±25.33 / 3275.62 ms │ 3225.26 / 3249.92 ±16.13 / 3274.56 ms │     no change │
│ QQuery 24 │        41.87 / 46.42 ±4.67 / 52.54 ms │        41.46 / 43.56 ±2.71 / 48.60 ms │ +1.07x faster │
│ QQuery 25 │     112.05 / 117.80 ±8.20 / 133.70 ms │     112.06 / 113.66 ±1.75 / 116.96 ms │     no change │
│ QQuery 26 │        42.08 / 43.69 ±2.18 / 47.97 ms │        42.10 / 43.36 ±1.27 / 45.40 ms │     no change │
│ QQuery 27 │     671.63 / 680.57 ±7.53 / 691.76 ms │     672.26 / 678.59 ±6.08 / 688.60 ms │     no change │
│ QQuery 28 │ 3022.68 / 3078.00 ±29.56 / 3107.44 ms │ 3056.17 / 3069.97 ±18.31 / 3105.62 ms │     no change │
│ QQuery 29 │        40.15 / 40.64 ±0.48 / 41.47 ms │        40.63 / 44.10 ±6.10 / 56.25 ms │  1.09x slower │
│ QQuery 30 │    304.75 / 319.07 ±14.91 / 340.83 ms │     301.49 / 307.64 ±4.70 / 314.84 ms │     no change │
│ QQuery 31 │     285.56 / 297.27 ±8.15 / 307.50 ms │     291.93 / 299.39 ±6.45 / 310.48 ms │     no change │
│ QQuery 32 │   941.65 / 983.57 ±26.84 / 1025.22 ms │   957.18 / 980.96 ±24.72 / 1020.41 ms │     no change │
│ QQuery 33 │  1489.03 / 1496.63 ±6.61 / 1507.09 ms │ 1490.78 / 1524.38 ±33.42 / 1578.29 ms │     no change │
│ QQuery 34 │ 1481.03 / 1511.74 ±23.60 / 1544.94 ms │ 1502.03 / 1529.85 ±18.33 / 1547.78 ms │     no change │
│ QQuery 35 │    282.21 / 310.20 ±41.19 / 392.08 ms │    280.58 / 302.49 ±21.35 / 333.66 ms │     no change │
│ QQuery 36 │        66.46 / 78.28 ±8.81 / 88.69 ms │        69.97 / 73.53 ±2.52 / 77.63 ms │ +1.06x faster │
│ QQuery 37 │        35.51 / 42.75 ±8.94 / 58.80 ms │        37.03 / 44.09 ±8.32 / 58.20 ms │     no change │
│ QQuery 38 │        41.20 / 46.42 ±5.24 / 56.11 ms │        43.07 / 43.93 ±0.97 / 45.41 ms │ +1.06x faster │
│ QQuery 39 │     154.92 / 156.59 ±1.82 / 159.88 ms │    131.67 / 154.07 ±13.24 / 173.15 ms │     no change │
│ QQuery 40 │        13.75 / 14.58 ±1.10 / 16.76 ms │        16.31 / 16.83 ±0.52 / 17.76 ms │  1.15x slower │
│ QQuery 41 │        13.37 / 14.24 ±1.34 / 16.90 ms │        15.84 / 16.31 ±0.57 / 17.36 ms │  1.15x slower │
│ QQuery 42 │        12.92 / 13.22 ±0.19 / 13.51 ms │        13.65 / 15.92 ±4.41 / 24.74 ms │  1.20x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 20137.14ms │
│ Total Time (lift-selectivity-stats)   │ 20204.65ms │
│ Average Time (HEAD)                   │   468.31ms │
│ Average Time (lift-selectivity-stats) │   469.88ms │
│ Queries Faster                        │          3 │
│ Queries Slower                        │          5 │
│ Queries with No Change                │         35 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 105.0s
Peak memory 29.9 GiB
Avg memory 23.1 GiB
CPU user 1034.5s
CPU sys 75.8s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 30.1 GiB
Avg memory 22.9 GiB
CPU user 1034.7s
CPU sys 78.0s
Peak spill 0 B

File an issue against this benchmark runner

@adriangb

adriangb commented Jun 1, 2026

Copy link
Copy Markdown
Contributor Author

run benchmarks

env:
  DATAFUSION_EXECUTION_ADAPTIVE_FILTER_REORDERING: true

@adriangbot

Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
Cloning into '/workspace/datafusion-branch'...
From https://github.com/apache/datafusion
 * [new ref]         refs/pull/22698/head -> lift-selectivity-stats
 * branch            main                 -> FETCH_HEAD
Switched to branch 'lift-selectivity-stats'
85bc5ef7473d608604dc2e8bd81184505a1f6c19
Cloning into '/workspace/datafusion-base'...
HEAD is now at 85bc5ef fix: Projection stats Absent for columns referenced >1 time (#22679)
rustc 1.95.0 (59807616e 2026-04-14)
5e71ea4bd7436e797944a53367c326ab4088dc93
85bc5ef7473d608604dc2e8bd81184505a1f6c19

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4593706269-396-l9mwp 6.12.68+ #1 SMP Wed Apr 1 02:23:28 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (5e71ea4) to 85bc5ef (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

Benchmark for this request failed.

Last 20 lines of output:

Click to expand
Cloning into '/workspace/datafusion-branch'...
From https://github.com/apache/datafusion
 * [new ref]         refs/pull/22698/head -> lift-selectivity-stats
 * branch            main                 -> FETCH_HEAD
Switched to branch 'lift-selectivity-stats'
85bc5ef7473d608604dc2e8bd81184505a1f6c19
Cloning into '/workspace/datafusion-base'...
HEAD is now at 85bc5ef fix: Projection stats Absent for columns referenced >1 time (#22679)
rustc 1.95.0 (59807616e 2026-04-14)
5e71ea4bd7436e797944a53367c326ab4088dc93
85bc5ef7473d608604dc2e8bd81184505a1f6c19

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.82 / 6.31 ±0.87 / 8.05 ms │           5.93 / 6.42 ±0.80 / 8.01 ms │     no change │
│ QQuery 2  │        79.80 / 80.04 ±0.27 / 80.37 ms │        81.53 / 82.47 ±0.85 / 84.05 ms │     no change │
│ QQuery 3  │        28.89 / 29.05 ±0.14 / 29.27 ms │        29.20 / 29.56 ±0.24 / 29.82 ms │     no change │
│ QQuery 4  │     494.27 / 500.08 ±3.79 / 505.86 ms │     499.47 / 505.08 ±4.91 / 511.99 ms │     no change │
│ QQuery 5  │        51.25 / 51.62 ±0.44 / 52.47 ms │        51.44 / 52.04 ±0.34 / 52.40 ms │     no change │
│ QQuery 6  │        36.17 / 36.79 ±0.31 / 37.03 ms │        36.64 / 36.96 ±0.17 / 37.12 ms │     no change │
│ QQuery 7  │        95.33 / 95.90 ±0.50 / 96.62 ms │       96.38 / 98.83 ±2.80 / 104.28 ms │     no change │
│ QQuery 8  │        37.33 / 39.03 ±3.06 / 45.14 ms │        37.17 / 38.18 ±0.62 / 38.81 ms │     no change │
│ QQuery 9  │        54.23 / 55.76 ±1.33 / 57.97 ms │        52.93 / 57.22 ±2.52 / 60.63 ms │     no change │
│ QQuery 10 │        69.45 / 69.74 ±0.30 / 70.20 ms │        68.89 / 69.43 ±0.40 / 69.86 ms │     no change │
│ QQuery 11 │     311.56 / 315.99 ±3.44 / 320.23 ms │     307.05 / 309.09 ±1.23 / 310.26 ms │     no change │
│ QQuery 12 │        28.94 / 29.22 ±0.28 / 29.68 ms │        29.03 / 29.41 ±0.26 / 29.82 ms │     no change │
│ QQuery 13 │     119.05 / 120.71 ±1.59 / 123.35 ms │     120.30 / 121.32 ±0.60 / 122.00 ms │     no change │
│ QQuery 14 │     504.86 / 508.49 ±3.00 / 513.68 ms │     506.04 / 509.97 ±2.13 / 512.31 ms │     no change │
│ QQuery 15 │        58.80 / 60.48 ±1.32 / 61.94 ms │        59.47 / 62.60 ±2.62 / 66.62 ms │     no change │
│ QQuery 16 │          7.02 / 8.73 ±3.15 / 15.02 ms │           7.14 / 7.31 ±0.23 / 7.75 ms │ +1.19x faster │
│ QQuery 17 │        81.33 / 83.02 ±1.66 / 85.85 ms │        81.70 / 83.09 ±1.15 / 84.59 ms │     no change │
│ QQuery 18 │     126.69 / 127.94 ±1.71 / 131.24 ms │     129.83 / 131.09 ±1.00 / 132.43 ms │     no change │
│ QQuery 19 │        42.26 / 42.62 ±0.36 / 43.27 ms │        42.77 / 42.99 ±0.19 / 43.28 ms │     no change │
│ QQuery 20 │        36.09 / 36.34 ±0.22 / 36.64 ms │        35.85 / 36.54 ±0.56 / 37.21 ms │     no change │
│ QQuery 21 │        17.49 / 17.98 ±0.64 / 19.18 ms │        17.43 / 17.59 ±0.18 / 17.89 ms │     no change │
│ QQuery 22 │        64.51 / 64.98 ±0.58 / 66.09 ms │        62.65 / 64.23 ±0.95 / 65.31 ms │     no change │
│ QQuery 23 │     349.52 / 356.04 ±6.30 / 363.90 ms │     356.04 / 361.58 ±4.41 / 367.32 ms │     no change │
│ QQuery 24 │     226.34 / 230.94 ±6.39 / 243.55 ms │     227.31 / 232.72 ±7.61 / 247.68 ms │     no change │
│ QQuery 25 │     113.98 / 117.00 ±2.18 / 120.36 ms │     115.56 / 118.61 ±3.02 / 123.10 ms │     no change │
│ QQuery 26 │        58.71 / 59.17 ±0.56 / 60.20 ms │        60.79 / 61.26 ±0.38 / 61.73 ms │     no change │
│ QQuery 27 │           6.91 / 7.07 ±0.16 / 7.36 ms │           6.78 / 6.96 ±0.18 / 7.31 ms │     no change │
│ QQuery 28 │        60.56 / 62.92 ±4.24 / 71.40 ms │        60.21 / 65.07 ±4.80 / 74.30 ms │     no change │
│ QQuery 29 │      99.32 / 101.20 ±2.39 / 105.90 ms │     100.11 / 101.08 ±1.06 / 103.11 ms │     no change │
│ QQuery 30 │        33.17 / 33.39 ±0.17 / 33.67 ms │        34.02 / 34.71 ±0.43 / 35.35 ms │     no change │
│ QQuery 31 │     112.34 / 114.83 ±1.63 / 116.74 ms │     115.67 / 116.64 ±0.98 / 118.40 ms │     no change │
│ QQuery 32 │        21.55 / 21.65 ±0.06 / 21.74 ms │        21.24 / 21.57 ±0.34 / 22.14 ms │     no change │
│ QQuery 33 │        39.14 / 39.79 ±0.48 / 40.39 ms │        40.28 / 40.67 ±0.33 / 41.27 ms │     no change │
│ QQuery 34 │          9.74 / 9.89 ±0.12 / 10.07 ms │        10.01 / 10.21 ±0.23 / 10.64 ms │     no change │
│ QQuery 35 │        78.15 / 80.76 ±3.16 / 86.98 ms │        80.19 / 82.53 ±3.12 / 88.66 ms │     no change │
│ QQuery 36 │          6.09 / 7.66 ±3.00 / 13.67 ms │           6.46 / 6.57 ±0.10 / 6.73 ms │ +1.17x faster │
│ QQuery 37 │           7.03 / 7.26 ±0.16 / 7.48 ms │           7.40 / 7.60 ±0.18 / 7.81 ms │     no change │
│ QQuery 38 │        65.03 / 66.15 ±1.31 / 68.57 ms │        67.19 / 68.33 ±0.75 / 69.07 ms │     no change │
│ QQuery 39 │     454.35 / 467.85 ±8.59 / 478.34 ms │     470.33 / 479.43 ±6.34 / 489.37 ms │     no change │
│ QQuery 40 │        23.29 / 23.39 ±0.06 / 23.47 ms │        23.94 / 26.98 ±3.63 / 33.79 ms │  1.15x slower │
│ QQuery 41 │        11.39 / 11.56 ±0.32 / 12.20 ms │        11.75 / 11.85 ±0.15 / 12.14 ms │     no change │
│ QQuery 42 │        23.56 / 27.69 ±5.04 / 37.21 ms │        24.58 / 24.86 ±0.31 / 25.36 ms │ +1.11x faster │
│ QQuery 43 │           4.98 / 5.14 ±0.20 / 5.54 ms │           5.01 / 5.13 ±0.13 / 5.39 ms │     no change │
│ QQuery 44 │        10.85 / 11.19 ±0.46 / 12.02 ms │        10.92 / 11.13 ±0.19 / 11.45 ms │     no change │
│ QQuery 45 │        38.85 / 39.30 ±0.38 / 39.89 ms │        40.27 / 41.19 ±0.87 / 42.68 ms │     no change │
│ QQuery 46 │        12.15 / 12.57 ±0.33 / 12.98 ms │        11.91 / 12.08 ±0.11 / 12.19 ms │     no change │
│ QQuery 47 │     229.34 / 235.11 ±3.91 / 239.39 ms │     234.76 / 243.73 ±6.84 / 254.08 ms │     no change │
│ QQuery 48 │        96.71 / 97.54 ±0.62 / 98.34 ms │     100.33 / 101.97 ±2.50 / 106.95 ms │     no change │
│ QQuery 49 │        78.13 / 79.23 ±1.06 / 81.24 ms │        78.87 / 79.20 ±0.49 / 80.16 ms │     no change │
│ QQuery 50 │        60.04 / 60.40 ±0.24 / 60.72 ms │        60.33 / 63.91 ±4.26 / 70.68 ms │  1.06x slower │
│ QQuery 51 │       92.39 / 95.01 ±3.43 / 101.61 ms │       95.31 / 98.34 ±2.76 / 103.39 ms │     no change │
│ QQuery 52 │        24.14 / 24.38 ±0.27 / 24.89 ms │        24.52 / 24.76 ±0.21 / 25.05 ms │     no change │
│ QQuery 53 │        29.87 / 30.10 ±0.24 / 30.54 ms │        29.95 / 30.28 ±0.20 / 30.51 ms │     no change │
│ QQuery 54 │        55.58 / 56.31 ±0.40 / 56.78 ms │        56.18 / 58.88 ±4.03 / 66.84 ms │     no change │
│ QQuery 55 │        23.56 / 23.78 ±0.14 / 23.96 ms │        23.62 / 24.06 ±0.47 / 24.79 ms │     no change │
│ QQuery 56 │        39.09 / 39.96 ±0.57 / 40.74 ms │        39.20 / 39.69 ±0.42 / 40.32 ms │     no change │
│ QQuery 57 │     178.78 / 179.25 ±0.69 / 180.58 ms │     178.30 / 179.73 ±0.79 / 180.74 ms │     no change │
│ QQuery 58 │     116.42 / 119.18 ±3.73 / 126.42 ms │     117.96 / 118.94 ±0.63 / 119.54 ms │     no change │
│ QQuery 59 │     117.65 / 121.68 ±4.25 / 128.99 ms │     118.35 / 119.99 ±1.66 / 123.15 ms │     no change │
│ QQuery 60 │        39.25 / 40.39 ±0.64 / 40.98 ms │        39.44 / 40.25 ±0.75 / 41.65 ms │     no change │
│ QQuery 61 │        13.27 / 13.51 ±0.27 / 13.84 ms │        13.28 / 13.39 ±0.12 / 13.61 ms │     no change │
│ QQuery 62 │        46.11 / 46.51 ±0.28 / 46.88 ms │        46.89 / 48.45 ±2.82 / 54.09 ms │     no change │
│ QQuery 63 │        29.49 / 29.94 ±0.25 / 30.22 ms │        30.66 / 31.53 ±1.19 / 33.90 ms │  1.05x slower │
│ QQuery 64 │     393.38 / 398.72 ±4.32 / 406.62 ms │    401.67 / 417.84 ±16.92 / 448.06 ms │     no change │
│ QQuery 65 │     146.82 / 153.16 ±6.38 / 165.09 ms │     143.93 / 149.63 ±3.21 / 152.89 ms │     no change │
│ QQuery 66 │        78.86 / 84.01 ±7.83 / 99.53 ms │        81.31 / 84.52 ±5.30 / 95.08 ms │     no change │
│ QQuery 67 │     253.34 / 260.87 ±5.55 / 267.80 ms │     257.07 / 263.58 ±3.36 / 266.43 ms │     no change │
│ QQuery 68 │        12.06 / 12.25 ±0.13 / 12.44 ms │        12.22 / 12.33 ±0.10 / 12.50 ms │     no change │
│ QQuery 69 │        62.75 / 63.32 ±0.40 / 63.92 ms │        63.38 / 68.00 ±6.18 / 80.12 ms │  1.07x slower │
│ QQuery 70 │    106.19 / 114.35 ±11.83 / 137.05 ms │     107.84 / 110.28 ±2.94 / 114.43 ms │     no change │
│ QQuery 71 │        35.35 / 35.95 ±0.40 / 36.53 ms │        35.84 / 36.39 ±0.54 / 37.23 ms │     no change │
│ QQuery 72 │ 2058.69 / 2175.08 ±63.62 / 2232.46 ms │ 2139.15 / 2213.49 ±38.81 / 2253.11 ms │     no change │
│ QQuery 73 │           9.38 / 9.65 ±0.20 / 9.92 ms │          9.58 / 9.72 ±0.16 / 10.04 ms │     no change │
│ QQuery 74 │     173.14 / 177.60 ±2.68 / 180.90 ms │     173.85 / 181.21 ±6.16 / 191.89 ms │     no change │
│ QQuery 75 │     147.58 / 148.96 ±1.12 / 150.46 ms │     149.57 / 155.16 ±8.99 / 173.09 ms │     no change │
│ QQuery 76 │        35.11 / 37.01 ±2.12 / 41.08 ms │        35.41 / 35.80 ±0.29 / 36.28 ms │     no change │
│ QQuery 77 │        62.08 / 62.53 ±0.40 / 63.26 ms │        61.47 / 63.84 ±3.81 / 71.40 ms │     no change │
│ QQuery 78 │     191.12 / 194.23 ±2.22 / 197.94 ms │     193.92 / 196.85 ±2.08 / 200.39 ms │     no change │
│ QQuery 79 │        67.68 / 68.04 ±0.33 / 68.67 ms │        69.14 / 71.50 ±3.49 / 78.43 ms │  1.05x slower │
│ QQuery 80 │     101.69 / 107.53 ±9.15 / 125.68 ms │     101.73 / 103.23 ±0.92 / 104.21 ms │     no change │
│ QQuery 81 │        26.06 / 26.56 ±0.33 / 26.93 ms │        26.35 / 31.36 ±4.56 / 37.67 ms │  1.18x slower │
│ QQuery 82 │        16.56 / 16.64 ±0.08 / 16.80 ms │        17.59 / 17.89 ±0.32 / 18.46 ms │  1.08x slower │
│ QQuery 83 │        40.26 / 40.60 ±0.27 / 40.92 ms │        41.39 / 42.25 ±0.65 / 43.31 ms │     no change │
│ QQuery 84 │        34.75 / 34.84 ±0.08 / 34.97 ms │        35.42 / 35.79 ±0.30 / 36.20 ms │     no change │
│ QQuery 85 │     110.06 / 115.53 ±6.53 / 126.32 ms │     109.80 / 113.38 ±3.46 / 117.74 ms │     no change │
│ QQuery 86 │        25.19 / 25.71 ±0.38 / 26.09 ms │        26.44 / 26.86 ±0.36 / 27.53 ms │     no change │
│ QQuery 87 │        63.81 / 64.48 ±0.49 / 65.16 ms │        66.81 / 67.51 ±0.76 / 68.88 ms │     no change │
│ QQuery 88 │        62.87 / 66.02 ±3.11 / 70.95 ms │        62.92 / 63.20 ±0.26 / 63.61 ms │     no change │
│ QQuery 89 │        36.16 / 36.61 ±0.49 / 37.51 ms │        36.68 / 40.88 ±5.24 / 49.13 ms │  1.12x slower │
│ QQuery 90 │        16.84 / 17.10 ±0.25 / 17.50 ms │        17.26 / 17.55 ±0.21 / 17.89 ms │     no change │
│ QQuery 91 │        45.57 / 45.98 ±0.46 / 46.87 ms │        46.52 / 47.12 ±0.41 / 47.81 ms │     no change │
│ QQuery 92 │        29.48 / 29.98 ±0.31 / 30.39 ms │        31.24 / 31.55 ±0.22 / 31.86 ms │  1.05x slower │
│ QQuery 93 │        50.27 / 53.53 ±2.12 / 56.34 ms │        51.45 / 55.30 ±4.03 / 63.04 ms │     no change │
│ QQuery 94 │        38.91 / 39.41 ±0.50 / 40.33 ms │        39.63 / 42.75 ±3.23 / 47.88 ms │  1.08x slower │
│ QQuery 95 │        83.68 / 84.50 ±0.77 / 85.72 ms │        86.00 / 87.49 ±1.14 / 89.04 ms │     no change │
│ QQuery 96 │        23.85 / 24.12 ±0.23 / 24.48 ms │        24.47 / 24.83 ±0.29 / 25.31 ms │     no change │
│ QQuery 97 │        45.96 / 48.57 ±3.49 / 55.41 ms │        46.58 / 47.08 ±0.44 / 47.86 ms │     no change │
│ QQuery 98 │        42.43 / 43.26 ±0.66 / 44.26 ms │        43.69 / 44.39 ±0.36 / 44.70 ms │     no change │
│ QQuery 99 │        69.82 / 70.11 ±0.23 / 70.49 ms │        70.83 / 71.35 ±0.44 / 71.94 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10574.30ms │
│ Total Time (lift-selectivity-stats)   │ 10739.18ms │
│ Average Time (HEAD)                   │   106.81ms │
│ Average Time (lift-selectivity-stats) │   108.48ms │
│ Queries Faster                        │          3 │
│ Queries Slower                        │         10 │
│ Queries with No Change                │         86 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 6.7 GiB
Avg memory 6.1 GiB
CPU user 239.0s
CPU sys 6.4s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 6.9 GiB
Avg memory 6.3 GiB
CPU user 243.1s
CPU sys 6.9s
Peak spill 0 B

File an issue against this benchmark runner

@adriangb adriangb force-pushed the lift-selectivity-stats branch 3 times, most recently from a24471d to 4d7b733 Compare June 2, 2026 02:29
@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           5.70 / 6.23 ±0.92 / 8.06 ms │           5.63 / 6.18 ±0.90 / 7.97 ms │     no change │
│ QQuery 2  │        80.08 / 80.54 ±0.27 / 80.86 ms │        79.34 / 80.16 ±0.54 / 80.82 ms │     no change │
│ QQuery 3  │        28.92 / 29.19 ±0.18 / 29.39 ms │        28.74 / 28.93 ±0.16 / 29.15 ms │     no change │
│ QQuery 4  │     488.33 / 496.73 ±7.25 / 509.15 ms │     487.26 / 496.20 ±5.43 / 502.37 ms │     no change │
│ QQuery 5  │        51.42 / 52.05 ±0.45 / 52.65 ms │        51.34 / 51.70 ±0.23 / 51.98 ms │     no change │
│ QQuery 6  │        36.58 / 36.79 ±0.18 / 37.09 ms │        35.99 / 36.42 ±0.26 / 36.77 ms │     no change │
│ QQuery 7  │        95.43 / 96.13 ±0.54 / 96.98 ms │        92.45 / 93.76 ±0.74 / 94.48 ms │     no change │
│ QQuery 8  │        37.19 / 37.72 ±0.45 / 38.49 ms │        36.81 / 38.43 ±2.80 / 44.02 ms │     no change │
│ QQuery 9  │        50.85 / 55.87 ±3.36 / 61.25 ms │        52.27 / 54.93 ±1.65 / 56.95 ms │     no change │
│ QQuery 10 │        62.90 / 63.02 ±0.10 / 63.18 ms │        62.31 / 62.72 ±0.22 / 62.97 ms │     no change │
│ QQuery 11 │     306.85 / 309.81 ±2.49 / 314.41 ms │    301.17 / 311.46 ±10.69 / 332.03 ms │     no change │
│ QQuery 12 │        28.22 / 28.84 ±0.46 / 29.50 ms │        28.60 / 29.04 ±0.28 / 29.35 ms │     no change │
│ QQuery 13 │     120.12 / 121.99 ±2.01 / 125.42 ms │     119.93 / 120.38 ±0.34 / 120.83 ms │     no change │
│ QQuery 14 │     410.78 / 413.56 ±2.12 / 415.83 ms │     407.75 / 411.73 ±2.61 / 414.71 ms │     no change │
│ QQuery 15 │        58.47 / 59.35 ±0.65 / 60.43 ms │        57.12 / 57.94 ±0.50 / 58.54 ms │     no change │
│ QQuery 16 │           6.60 / 6.80 ±0.18 / 7.09 ms │           6.64 / 6.75 ±0.19 / 7.13 ms │     no change │
│ QQuery 17 │        80.40 / 81.56 ±0.98 / 83.29 ms │        80.09 / 80.48 ±0.39 / 81.14 ms │     no change │
│ QQuery 18 │     123.49 / 126.62 ±3.72 / 133.84 ms │     122.86 / 124.50 ±1.72 / 127.64 ms │     no change │
│ QQuery 19 │        41.61 / 41.92 ±0.31 / 42.46 ms │        41.64 / 42.25 ±0.67 / 43.41 ms │     no change │
│ QQuery 20 │        35.04 / 36.15 ±0.82 / 37.35 ms │        35.97 / 37.82 ±1.60 / 39.90 ms │     no change │
│ QQuery 21 │        16.98 / 17.31 ±0.39 / 17.88 ms │        17.00 / 17.22 ±0.23 / 17.64 ms │     no change │
│ QQuery 22 │        62.24 / 63.01 ±0.68 / 64.06 ms │        61.67 / 62.23 ±0.41 / 62.63 ms │     no change │
│ QQuery 23 │     316.53 / 320.20 ±4.90 / 329.87 ms │     321.88 / 324.74 ±2.19 / 328.53 ms │     no change │
│ QQuery 24 │     223.85 / 228.97 ±4.38 / 235.70 ms │     224.77 / 227.37 ±2.79 / 232.69 ms │     no change │
│ QQuery 25 │     110.84 / 113.17 ±3.20 / 119.47 ms │     109.70 / 113.40 ±5.18 / 123.59 ms │     no change │
│ QQuery 26 │        57.60 / 58.79 ±1.13 / 60.93 ms │        56.63 / 57.17 ±0.55 / 58.17 ms │     no change │
│ QQuery 27 │           6.46 / 6.69 ±0.16 / 6.90 ms │           6.57 / 6.72 ±0.17 / 7.05 ms │     no change │
│ QQuery 28 │        56.03 / 60.51 ±2.29 / 62.17 ms │        55.43 / 56.80 ±1.28 / 58.88 ms │ +1.07x faster │
│ QQuery 29 │        97.13 / 97.87 ±0.58 / 98.49 ms │       97.53 / 99.83 ±3.60 / 106.95 ms │     no change │
│ QQuery 30 │        32.12 / 32.63 ±0.55 / 33.66 ms │        32.29 / 32.90 ±0.66 / 34.15 ms │     no change │
│ QQuery 31 │     110.77 / 112.03 ±0.82 / 113.27 ms │     110.52 / 112.26 ±1.06 / 113.58 ms │     no change │
│ QQuery 32 │        20.31 / 20.47 ±0.16 / 20.69 ms │        19.86 / 20.20 ±0.35 / 20.86 ms │     no change │
│ QQuery 33 │        38.13 / 38.56 ±0.58 / 39.69 ms │        38.53 / 38.72 ±0.29 / 39.28 ms │     no change │
│ QQuery 34 │          9.29 / 9.68 ±0.48 / 10.61 ms │          9.41 / 9.91 ±0.26 / 10.15 ms │     no change │
│ QQuery 35 │        70.99 / 73.39 ±2.68 / 78.43 ms │        71.52 / 72.86 ±1.35 / 75.30 ms │     no change │
│ QQuery 36 │           5.76 / 5.88 ±0.15 / 6.16 ms │           5.81 / 5.96 ±0.19 / 6.34 ms │     no change │
│ QQuery 37 │           6.81 / 7.06 ±0.26 / 7.51 ms │           6.82 / 6.96 ±0.15 / 7.24 ms │     no change │
│ QQuery 38 │        62.19 / 65.39 ±3.87 / 72.81 ms │        63.44 / 64.00 ±0.28 / 64.19 ms │     no change │
│ QQuery 39 │     454.56 / 459.51 ±3.15 / 463.91 ms │     449.09 / 454.08 ±4.58 / 461.41 ms │     no change │
│ QQuery 40 │        23.07 / 23.40 ±0.24 / 23.68 ms │        22.57 / 22.76 ±0.13 / 22.96 ms │     no change │
│ QQuery 41 │        11.10 / 11.30 ±0.18 / 11.62 ms │        10.97 / 11.15 ±0.14 / 11.39 ms │     no change │
│ QQuery 42 │        24.13 / 26.01 ±2.88 / 31.75 ms │        23.46 / 25.19 ±2.96 / 31.10 ms │     no change │
│ QQuery 43 │           4.70 / 4.82 ±0.15 / 5.12 ms │           4.71 / 4.80 ±0.14 / 5.09 ms │     no change │
│ QQuery 44 │           8.67 / 8.90 ±0.16 / 9.06 ms │           8.60 / 8.74 ±0.13 / 8.95 ms │     no change │
│ QQuery 45 │        38.46 / 39.25 ±0.56 / 39.86 ms │        37.59 / 38.14 ±0.28 / 38.31 ms │     no change │
│ QQuery 46 │        11.40 / 11.55 ±0.12 / 11.72 ms │        11.45 / 11.73 ±0.22 / 12.11 ms │     no change │
│ QQuery 47 │     225.83 / 230.29 ±3.71 / 235.05 ms │     227.76 / 233.20 ±7.11 / 246.80 ms │     no change │
│ QQuery 48 │       96.49 / 98.52 ±3.02 / 104.51 ms │        95.93 / 96.78 ±0.61 / 97.78 ms │     no change │
│ QQuery 49 │        76.74 / 77.55 ±0.99 / 79.48 ms │        77.01 / 79.77 ±4.34 / 88.37 ms │     no change │
│ QQuery 50 │        59.39 / 59.82 ±0.22 / 60.01 ms │        59.72 / 60.35 ±0.94 / 62.22 ms │     no change │
│ QQuery 51 │        92.37 / 94.31 ±1.81 / 97.76 ms │        90.21 / 93.02 ±1.53 / 94.34 ms │     no change │
│ QQuery 52 │        24.06 / 24.71 ±0.56 / 25.74 ms │        24.42 / 24.90 ±0.38 / 25.58 ms │     no change │
│ QQuery 53 │        29.16 / 29.39 ±0.20 / 29.70 ms │        29.99 / 30.07 ±0.08 / 30.23 ms │     no change │
│ QQuery 54 │        54.75 / 55.01 ±0.16 / 55.24 ms │        55.45 / 57.31 ±2.22 / 61.69 ms │     no change │
│ QQuery 55 │        24.11 / 25.61 ±1.19 / 27.54 ms │        23.90 / 24.03 ±0.13 / 24.25 ms │ +1.07x faster │
│ QQuery 56 │        38.74 / 39.50 ±0.68 / 40.68 ms │        39.42 / 40.37 ±1.53 / 43.40 ms │     no change │
│ QQuery 57 │     174.88 / 176.26 ±0.78 / 177.22 ms │     176.32 / 177.23 ±0.67 / 177.99 ms │     no change │
│ QQuery 58 │     113.38 / 115.41 ±3.22 / 121.83 ms │     114.91 / 116.93 ±2.12 / 119.67 ms │     no change │
│ QQuery 59 │     117.35 / 119.59 ±3.01 / 125.43 ms │     117.84 / 118.56 ±0.87 / 120.18 ms │     no change │
│ QQuery 60 │        39.25 / 39.94 ±0.42 / 40.35 ms │        39.78 / 40.56 ±0.69 / 41.64 ms │     no change │
│ QQuery 61 │        12.92 / 13.04 ±0.12 / 13.26 ms │        13.01 / 13.22 ±0.19 / 13.54 ms │     no change │
│ QQuery 62 │        46.17 / 46.62 ±0.41 / 47.20 ms │        46.69 / 47.18 ±0.47 / 47.95 ms │     no change │
│ QQuery 63 │        29.71 / 29.96 ±0.31 / 30.57 ms │        30.15 / 31.30 ±1.07 / 33.34 ms │     no change │
│ QQuery 64 │    394.16 / 406.15 ±14.30 / 430.93 ms │     401.39 / 410.46 ±6.60 / 418.77 ms │     no change │
│ QQuery 65 │     145.16 / 151.34 ±3.96 / 156.94 ms │     143.71 / 149.27 ±2.81 / 151.53 ms │     no change │
│ QQuery 66 │        80.10 / 80.66 ±0.43 / 81.17 ms │        80.44 / 81.45 ±1.34 / 84.06 ms │     no change │
│ QQuery 67 │     251.11 / 256.70 ±6.65 / 266.74 ms │     250.13 / 260.23 ±6.30 / 266.36 ms │     no change │
│ QQuery 68 │        11.79 / 12.06 ±0.18 / 12.30 ms │        11.87 / 12.24 ±0.29 / 12.57 ms │     no change │
│ QQuery 69 │        57.39 / 58.05 ±0.41 / 58.50 ms │        57.83 / 58.33 ±0.32 / 58.77 ms │     no change │
│ QQuery 70 │     105.34 / 109.13 ±3.83 / 114.00 ms │     105.66 / 111.36 ±5.75 / 119.71 ms │     no change │
│ QQuery 71 │        35.71 / 36.44 ±0.62 / 37.49 ms │        35.70 / 36.32 ±0.73 / 37.71 ms │     no change │
│ QQuery 72 │ 2148.39 / 2229.53 ±57.88 / 2305.65 ms │ 2142.50 / 2194.57 ±30.75 / 2230.20 ms │     no change │
│ QQuery 73 │          9.50 / 9.68 ±0.22 / 10.11 ms │          9.33 / 9.75 ±0.37 / 10.36 ms │     no change │
│ QQuery 74 │     168.56 / 174.69 ±4.81 / 182.99 ms │     171.70 / 177.04 ±3.91 / 183.79 ms │     no change │
│ QQuery 75 │     146.29 / 147.72 ±1.01 / 149.06 ms │     147.25 / 150.10 ±4.25 / 158.41 ms │     no change │
│ QQuery 76 │        34.90 / 35.99 ±1.00 / 37.44 ms │        35.32 / 35.76 ±0.59 / 36.90 ms │     no change │
│ QQuery 77 │        60.30 / 61.65 ±1.27 / 63.97 ms │        60.60 / 61.68 ±0.65 / 62.47 ms │     no change │
│ QQuery 78 │     183.44 / 188.53 ±5.09 / 198.25 ms │     185.34 / 190.98 ±5.48 / 198.20 ms │     no change │
│ QQuery 79 │        66.93 / 67.51 ±0.37 / 67.94 ms │        66.34 / 68.09 ±1.82 / 71.49 ms │     no change │
│ QQuery 80 │     100.37 / 102.45 ±2.05 / 106.18 ms │     101.09 / 105.69 ±3.22 / 110.08 ms │     no change │
│ QQuery 81 │        25.43 / 25.63 ±0.16 / 25.84 ms │        26.14 / 26.48 ±0.26 / 26.92 ms │     no change │
│ QQuery 82 │        16.33 / 16.52 ±0.12 / 16.64 ms │        16.69 / 17.39 ±0.89 / 19.04 ms │  1.05x slower │
│ QQuery 83 │        39.17 / 39.72 ±0.36 / 40.21 ms │        39.33 / 39.87 ±0.39 / 40.44 ms │     no change │
│ QQuery 84 │        34.53 / 34.83 ±0.21 / 35.12 ms │        34.91 / 37.22 ±4.41 / 46.04 ms │  1.07x slower │
│ QQuery 85 │     108.17 / 111.92 ±3.84 / 118.42 ms │     109.07 / 111.07 ±1.52 / 113.18 ms │     no change │
│ QQuery 86 │        25.04 / 25.35 ±0.28 / 25.86 ms │        25.28 / 25.68 ±0.24 / 25.99 ms │     no change │
│ QQuery 87 │        63.53 / 64.62 ±0.66 / 65.61 ms │        64.45 / 65.85 ±1.36 / 68.34 ms │     no change │
│ QQuery 88 │        61.78 / 63.90 ±2.13 / 66.51 ms │        61.99 / 65.24 ±3.79 / 71.56 ms │     no change │
│ QQuery 89 │        35.73 / 36.27 ±0.38 / 36.79 ms │        35.82 / 36.38 ±0.36 / 36.83 ms │     no change │
│ QQuery 90 │        16.70 / 16.89 ±0.19 / 17.21 ms │        16.63 / 16.88 ±0.26 / 17.31 ms │     no change │
│ QQuery 91 │        44.52 / 44.78 ±0.20 / 45.13 ms │        44.52 / 45.12 ±0.51 / 45.99 ms │     no change │
│ QQuery 92 │        28.86 / 29.27 ±0.37 / 29.90 ms │        29.47 / 29.79 ±0.24 / 30.06 ms │     no change │
│ QQuery 93 │        51.49 / 52.93 ±1.65 / 56.08 ms │        50.87 / 53.01 ±3.05 / 59.00 ms │     no change │
│ QQuery 94 │        39.18 / 39.49 ±0.31 / 40.06 ms │        38.82 / 40.67 ±2.63 / 45.81 ms │     no change │
│ QQuery 95 │        83.65 / 84.50 ±0.69 / 85.48 ms │        84.71 / 86.79 ±1.65 / 89.69 ms │     no change │
│ QQuery 96 │        24.02 / 24.24 ±0.26 / 24.74 ms │        24.59 / 25.77 ±2.22 / 30.21 ms │  1.06x slower │
│ QQuery 97 │        45.73 / 47.49 ±2.75 / 52.96 ms │        46.21 / 46.69 ±0.50 / 47.55 ms │     no change │
│ QQuery 98 │        42.74 / 44.08 ±1.53 / 46.94 ms │        43.04 / 43.81 ±0.82 / 45.34 ms │     no change │
│ QQuery 99 │        70.16 / 71.32 ±1.56 / 74.41 ms │        69.47 / 70.18 ±0.51 / 70.91 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10374.76ms │
│ Total Time (lift-selectivity-stats)   │ 10359.60ms │
│ Average Time (HEAD)                   │   104.80ms │
│ Average Time (lift-selectivity-stats) │   104.64ms │
│ Queries Faster                        │          2 │
│ Queries Slower                        │          3 │
│ Queries with No Change                │         94 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 1.7 GiB
Avg memory 1.2 GiB
CPU user 237.4s
CPU sys 6.3s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 2.0 GiB
Avg memory 1.3 GiB
CPU user 237.2s
CPU sys 6.4s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.14 / 3.28 ±4.21 / 11.70 ms │          1.15 / 3.28 ±4.17 / 11.61 ms │     no change │
│ QQuery 1  │        12.27 / 12.81 ±0.28 / 13.06 ms │        12.30 / 12.51 ±0.12 / 12.65 ms │     no change │
│ QQuery 2  │        35.52 / 35.72 ±0.17 / 35.95 ms │        35.27 / 35.60 ±0.27 / 36.07 ms │     no change │
│ QQuery 3  │        29.89 / 31.11 ±1.12 / 33.15 ms │        30.05 / 30.35 ±0.24 / 30.67 ms │     no change │
│ QQuery 4  │     223.78 / 229.19 ±3.64 / 235.02 ms │     222.82 / 227.14 ±2.32 / 229.57 ms │     no change │
│ QQuery 5  │     271.20 / 272.30 ±1.41 / 274.98 ms │     269.83 / 272.77 ±2.32 / 275.54 ms │     no change │
│ QQuery 6  │           1.18 / 1.33 ±0.22 / 1.75 ms │           1.19 / 1.33 ±0.22 / 1.76 ms │     no change │
│ QQuery 7  │        13.62 / 14.06 ±0.30 / 14.55 ms │        13.48 / 13.67 ±0.17 / 13.93 ms │     no change │
│ QQuery 8  │     324.24 / 325.30 ±1.12 / 327.40 ms │     319.92 / 326.09 ±7.42 / 340.31 ms │     no change │
│ QQuery 9  │     457.54 / 461.10 ±2.74 / 465.61 ms │     457.76 / 464.35 ±4.70 / 472.23 ms │     no change │
│ QQuery 10 │        68.71 / 71.06 ±3.06 / 77.02 ms │        69.04 / 70.18 ±0.99 / 71.52 ms │     no change │
│ QQuery 11 │        80.92 / 81.72 ±0.53 / 82.48 ms │        79.37 / 80.19 ±1.05 / 82.22 ms │     no change │
│ QQuery 12 │     270.44 / 275.02 ±3.51 / 280.42 ms │     269.38 / 274.01 ±2.90 / 278.53 ms │     no change │
│ QQuery 13 │     377.02 / 379.46 ±2.37 / 383.28 ms │     373.68 / 384.38 ±8.34 / 394.04 ms │     no change │
│ QQuery 14 │     278.91 / 286.21 ±4.24 / 291.43 ms │     282.10 / 291.62 ±5.06 / 295.66 ms │     no change │
│ QQuery 15 │     272.01 / 281.02 ±6.03 / 287.23 ms │     272.78 / 278.56 ±5.30 / 286.11 ms │     no change │
│ QQuery 16 │     627.43 / 632.75 ±3.75 / 637.36 ms │     621.64 / 633.02 ±8.51 / 644.24 ms │     no change │
│ QQuery 17 │     628.05 / 638.29 ±6.81 / 646.53 ms │    634.23 / 645.46 ±10.97 / 666.48 ms │     no change │
│ QQuery 18 │ 1272.55 / 1299.95 ±25.70 / 1341.28 ms │ 1275.55 / 1296.60 ±27.04 / 1348.46 ms │     no change │
│ QQuery 19 │        26.90 / 27.09 ±0.15 / 27.30 ms │        27.44 / 27.59 ±0.20 / 27.97 ms │     no change │
│ QQuery 20 │     516.29 / 523.69 ±8.63 / 534.41 ms │    512.56 / 526.87 ±14.20 / 553.54 ms │     no change │
│ QQuery 21 │     509.07 / 514.53 ±4.49 / 519.61 ms │     511.65 / 516.58 ±5.04 / 525.44 ms │     no change │
│ QQuery 22 │   974.95 / 990.34 ±12.46 / 1007.92 ms │   981.26 / 994.52 ±11.41 / 1015.62 ms │     no change │
│ QQuery 23 │ 3168.35 / 3202.94 ±39.66 / 3277.48 ms │  3219.27 / 3236.68 ±9.21 / 3245.29 ms │     no change │
│ QQuery 24 │        41.38 / 45.45 ±4.75 / 53.49 ms │        41.60 / 48.33 ±8.92 / 65.18 ms │  1.06x slower │
│ QQuery 25 │    109.70 / 121.26 ±15.35 / 151.51 ms │     111.29 / 117.62 ±6.27 / 126.67 ms │     no change │
│ QQuery 26 │        41.17 / 41.66 ±0.56 / 42.64 ms │        42.12 / 44.60 ±2.49 / 48.88 ms │  1.07x slower │
│ QQuery 27 │     663.52 / 668.78 ±3.26 / 672.74 ms │     670.05 / 672.74 ±3.38 / 678.68 ms │     no change │
│ QQuery 28 │  3044.14 / 3050.20 ±4.48 / 3056.88 ms │ 3015.12 / 3046.67 ±20.14 / 3075.16 ms │     no change │
│ QQuery 29 │        40.21 / 43.66 ±5.77 / 55.12 ms │        39.74 / 40.11 ±0.22 / 40.42 ms │ +1.09x faster │
│ QQuery 30 │     300.03 / 305.73 ±3.53 / 310.71 ms │    307.14 / 318.19 ±10.75 / 332.53 ms │     no change │
│ QQuery 31 │    282.75 / 304.04 ±16.96 / 333.90 ms │     279.86 / 290.16 ±7.29 / 297.05 ms │     no change │
│ QQuery 32 │   956.71 / 981.70 ±29.66 / 1039.03 ms │   979.79 / 993.72 ±17.43 / 1027.73 ms │     no change │
│ QQuery 33 │ 1463.45 / 1482.06 ±10.16 / 1490.37 ms │ 1481.02 / 1504.95 ±16.72 / 1530.04 ms │     no change │
│ QQuery 34 │ 1473.33 / 1508.95 ±27.90 / 1554.52 ms │  1494.92 / 1504.36 ±7.33 / 1513.90 ms │     no change │
│ QQuery 35 │     282.15 / 292.96 ±9.05 / 307.16 ms │    284.45 / 306.29 ±28.17 / 355.77 ms │     no change │
│ QQuery 36 │        66.43 / 72.22 ±3.65 / 76.55 ms │        69.34 / 75.10 ±3.82 / 79.83 ms │     no change │
│ QQuery 37 │        35.64 / 40.56 ±5.94 / 51.50 ms │        35.38 / 36.59 ±1.62 / 39.75 ms │ +1.11x faster │
│ QQuery 38 │        43.50 / 50.55 ±8.09 / 63.71 ms │        41.98 / 45.81 ±3.59 / 50.95 ms │ +1.10x faster │
│ QQuery 39 │    141.35 / 158.03 ±10.46 / 173.48 ms │     136.96 / 151.85 ±9.62 / 165.71 ms │     no change │
│ QQuery 40 │        14.00 / 19.20 ±4.42 / 24.93 ms │        14.02 / 14.55 ±0.68 / 15.89 ms │ +1.32x faster │
│ QQuery 41 │        14.08 / 16.80 ±2.73 / 20.31 ms │        13.70 / 17.20 ±4.16 / 23.10 ms │     no change │
│ QQuery 42 │        13.00 / 13.36 ±0.20 / 13.58 ms │        12.99 / 13.26 ±0.35 / 13.94 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 19807.44ms │
│ Total Time (lift-selectivity-stats)   │ 19885.43ms │
│ Average Time (HEAD)                   │   460.64ms │
│ Average Time (lift-selectivity-stats) │   462.45ms │
│ Queries Faster                        │          4 │
│ Queries Slower                        │          2 │
│ Queries with No Change                │         37 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 11.5 GiB
Avg memory 4.3 GiB
CPU user 1012.9s
CPU sys 70.5s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 100.0s
Peak memory 11.7 GiB
Avg memory 4.3 GiB
CPU user 1013.5s
CPU sys 73.1s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

group                                                                            HEAD                                   lift-selectivity-stats
-----                                                                            ----                                   ----------------------
predicate_eval/cardinality_q30_k2_cardinality                                    1.02   780.2±14.56µs        ? ?/sec    1.00    764.5±8.03µs        ? ?/sec
predicate_eval/cardinality_q31_k4_cardinality                                    1.05  1018.5±19.05µs        ? ?/sec    1.00   971.4±15.84µs        ? ?/sec
predicate_eval/cardinality_q32_k8_cardinality                                    1.10  1488.6±17.38µs        ? ?/sec    1.00  1351.2±21.26µs        ? ?/sec
predicate_eval/cardinality_q33_k16_cardinality                                   1.49      3.8±0.05ms        ? ?/sec    1.00      2.6±0.04ms        ? ?/sec
predicate_eval/correlation_q70_independent_correlation                           1.01   809.0±10.11µs        ? ?/sec    1.00   799.9±10.11µs        ? ?/sec
predicate_eval/correlation_q71_positive_correlation                              1.01    720.3±4.20µs        ? ?/sec    1.00    711.8±3.14µs        ? ?/sec
predicate_eval/correlation_q72_anti_correlation                                  1.03   713.2±14.09µs        ? ?/sec    1.00    691.7±7.12µs        ? ?/sec
predicate_eval/cost_q10_expensive_first_cost                                     1.05   939.4±23.08µs        ? ?/sec    1.00   892.3±14.94µs        ? ?/sec
predicate_eval/cost_q11_cheap_first_cost                                         1.02   903.9±18.80µs        ? ?/sec    1.00   888.2±12.42µs        ? ?/sec
predicate_eval/costsel_q01_regexp_selective_last_costsel                         1.83      5.9±0.06ms        ? ?/sec    1.00      3.2±0.02ms        ? ?/sec
predicate_eval/costsel_q02_regexp_selective_first_costsel                        1.00      2.2±0.03ms        ? ?/sec    1.01      2.2±0.05ms        ? ?/sec
predicate_eval/costsel_q03_cheap_unselective_then_expensive_selective_costsel    1.00   1723.3±6.85µs        ? ?/sec    1.04  1785.8±27.00µs        ? ?/sec
predicate_eval/drift_q80_a_then_b_drift                                          1.00    711.4±6.02µs        ? ?/sec    1.00   710.8±10.53µs        ? ?/sec
predicate_eval/drift_q81_b_then_a_drift                                          1.01    701.7±6.41µs        ? ?/sec    1.00    697.6±7.21µs        ? ?/sec
predicate_eval/neutral_q60_cheap_uniform_neutral                                 1.07  1137.6±10.39µs        ? ?/sec    1.00  1060.5±12.95µs        ? ?/sec
predicate_eval/neutral_q61_expensive_uniform_neutral                             1.03      4.9±0.05ms        ? ?/sec    1.00      4.8±0.03ms        ? ?/sec
predicate_eval/scale_q50_5k_scale                                                1.01    497.3±3.11µs        ? ?/sec    1.00    491.4±7.05µs        ? ?/sec
predicate_eval/scale_q51_100k_scale                                              1.00    625.4±5.80µs        ? ?/sec    1.03   643.0±10.81µs        ? ?/sec
predicate_eval/scale_q52_5m_scale                                                1.00      5.9±0.03ms        ? ?/sec    1.00      5.9±0.04ms        ? ?/sec
predicate_eval/scale_q53_50m_scale                                               1.00     54.0±0.83ms        ? ?/sec    1.00     53.9±0.41ms        ? ?/sec
predicate_eval/selectivity_q20_unselective_first_selectivity                     1.04   790.2±10.71µs        ? ?/sec    1.00    763.3±5.26µs        ? ?/sec
predicate_eval/selectivity_q21_selective_first_selectivity                       1.01    760.4±4.16µs        ? ?/sec    1.00    751.3±5.60µs        ? ?/sec
predicate_eval/width_q40_narrow_width                                            1.76      2.8±0.03ms        ? ?/sec    1.00  1596.6±21.06µs        ? ?/sec
predicate_eval/width_q41_wide_width                                              1.83      6.0±0.04ms        ? ?/sec    1.00      3.3±0.02ms        ? ?/sec
predicate_eval/width_q42_xwide_width                                             1.99     24.3±0.36ms        ? ?/sec    1.00     12.2±0.41ms        ? ?/sec

Resource Usage

predicate_eval — base (merge-base)

Metric Value
Wall time 755.2s
Peak memory 9.3 GiB
Avg memory 223.0 MiB
CPU user 1228.3s
CPU sys 21.6s
Peak spill 0 B

predicate_eval — branch

Metric Value
Wall time 985.2s
Peak memory 9.9 GiB
Avg memory 171.7 MiB
CPU user 1181.4s
CPU sys 24.3s
Peak spill 0 B

File an issue against this benchmark runner

AdamGS pushed a commit to AdamGS/arrow-datafusion that referenced this pull request Jun 11, 2026
…ilter evaluation (apache#22704)

## Which issue does this PR close?

<!-- No tracking issue; this is a standalone benchmark contribution. -->

This PR does not close an issue. It adds a benchmark suite to support
work and
discussion around predicate ordering in filter evaluation (e.g. the
static
reordering in apache#22343 and the runtime/statistics-based reordering
explored in
apache#22698). It deliberately benchmarks *no specific implementation* — see
below.

## Rationale for this change

Conjunctive (`AND`) filter evaluation in `FilterExec` is a left-deep
`BinaryExpr(And)` chain, and the order conjuncts are evaluated in can
change
runtime by large factors: once a leading conjunct passes few enough rows
the
batch is physically compacted before the rest, so a cheap-and-selective
predicate evaluated early saves later predicates work. Predicate
ordering is
therefore an active area (static heuristics, runtime/adaptive schemes,
cost
models).

There is currently no benchmark suite that isolates the dimensions that
drive
this. Existing macro-benchmarks (TPC-H/DS, ClickBench) only incidentally
exercise filter ordering, so they can't show *why* a change to ordering
helped
or hurt, or guard the order-insensitive case against regressions.

## What changes are included in this PR?

A new SQL benchmark suite, `benchmarks/sql_benchmarks/predicate_eval`,
built on
the existing `.benchmark` template framework (no engine code, no new
Rust). It
sets no engine config of its own and measures DataFusion's built-in
short-circuit
by default; a system under test is toggled purely via its native
`DATAFUSION_EXECUTION_*` env var (the bench harness builds its
`SessionContext`
with `SessionConfig::from_env`), so the same scenarios can characterise
the
baseline, a static heuristic, an adaptive scheme, or a cost model and be
compared apples-to-apples.

It is organised into 10 subgroups (select with `BENCH_SUBGROUP`), each
varying
one property of conjunctive filter evaluation while holding the others
fixed:

| Subgroup | What it varies (others held fixed) |
|---|---|
| `costsel` | cost and selectivity point in different directions
(expensive predicate is the selective one) |
| `cost` | per-predicate cost, at equal selectivity |
| `selectivity` | per-predicate selectivity, at equal cost |
| `cardinality` | conjunct count `k = 2/4/8/16` |
| `width` | string-column width (`PRED_FILL` = 2 / 30 / 170 chars) |
| `scale` | row count `5k / 100k / 5M / 50M` |
| `neutral` | predicates are interchangeable (equal cost, none
selective) — an order-insensitive control |
| `correlation` | conditional vs marginal selectivity (independent /
positively / anti-correlated) |
| `drift` | selectivity that changes across the scan |
| `nulls` | null density (two- vs three-valued predicate results) |

Each query's comment notes the per-predicate cost/selectivity that the
data
generation hides from the SQL. Data is synthetic and generated inline by
each
subgroup's load SQL (no external files); `PRED_ROWS` sizes it and
`PRED_FILL`
sets string width. Wired into `bench.sh` (`./bench.sh run
predicate_eval`) and
documented in `benchmarks/sql_benchmarks/README.md`.

The design was informed by surveying how Velox drives the analogous
decision
(it ranks by cycles-per-row-eliminated, `time / (rows_in - rows_out)`).

> Note: the `scale` subgroup's `q52`/`q53` build 5M / 50M-row tables
(the latter
> ~9 GB); run a single point with `BENCH_QUERY` if that is too heavy.

## Are these changes tested?

These are benchmark definitions, not engine code. Each `.benchmark`
includes an
`assert` that the generated table is non-empty, and every subgroup was
run
locally at small `PRED_ROWS` to confirm the suite parses, loads,
asserts, and
executes end-to-end. The queries are order-invariant (`SELECT count(*)
...`), so
any predicate-ordering system can also be checked for correctness by
diffing
counts with the optimization on vs. off.

## Are there any user-facing changes?

No. This only adds an opt-in benchmark suite and its documentation; no
public
API, engine behavior, or default configuration changes.

---------

Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
…posal

Marginal per-conjunct statistics are blind to correlation: arrangements with
very different costs can be statistically identical (the new predicate_eval
correlation_q73 case has ~1.9x headroom invisible to any independence-based
ranking), and the fused-vs-compact-once strategy difference is invisible to
per-conjunct numbers entirely.

Borrow the exploration idea from DuckDB's AdaptiveFilter (keep-or-revert
timing of random swaps, src/execution/adaptive_filter.cpp): when a measuring
window ends with nothing material to propose, occasionally put a random
adjacent swap of the incumbent through the existing shared paired A/B trial
instead of freezing. Each position carries a likelihood (halved when a swap
there loses its trial, restored to 100 when one wins), so exploration of
barren positions decays geometrically on top of the re-thaw backoff. The
candidate bypasses the model gates by design — it exists because the model
cannot see it — but adoption still requires the same measured,
confidence-separated end-to-end win as any other proposal, which is a
stronger keep-or-revert rule than DuckDB's strict mean comparison.

On correlation_q73 (PR apache#22919) this captures 1.28x of the ~1.9x headroom
within each 122-batch query (convergence needs two specific adjacent swaps;
the rest needs cross-query persistence, cf. DuckDB's multi-file adaptive
filter cache, left as future work). Tied micro-queries pay ~4-6% for the
exploration trials they decline.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@adriangb

Copy link
Copy Markdown
Contributor Author

run benchmark predicate_eval

env:
  DATAFUSION_EXECUTION_ADAPTIVE_FILTER_REORDERING: true

@adriangb

Copy link
Copy Markdown
Contributor Author

run benchmarks

env:
  DATAFUSION_EXECUTION_ADAPTIVE_FILTER_REORDERING: true

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4689070974-547-bhcj8 6.12.68+ #1 SMP Sat May 2 07:49:07 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (be79329) to 0f8a121 (merge-base) diff using: predicate_eval
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4689071118-549-hm6xw 6.12.68+ #1 SMP Sat May 2 07:49:07 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (be79329) to 0f8a121 (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4689071118-548-7c8vf 6.12.68+ #1 SMP Sat May 2 07:49:07 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (be79329) to 0f8a121 (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4689071118-550-ntcv6 6.12.68+ #1 SMP Sat May 2 07:49:07 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (be79329) to 0f8a121 (merge-base) diff using: tpch
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃         lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 38.27 / 38.88 ±1.02 / 40.93 ms │ 38.77 / 40.91 ±2.20 / 45.08 ms │  1.05x slower │
│ QQuery 2  │ 18.60 / 19.05 ±0.75 / 20.54 ms │ 18.57 / 19.05 ±0.37 / 19.70 ms │     no change │
│ QQuery 3  │ 30.91 / 32.63 ±2.08 / 36.32 ms │ 33.95 / 34.30 ±0.36 / 34.80 ms │  1.05x slower │
│ QQuery 4  │ 17.05 / 17.37 ±0.50 / 18.37 ms │ 17.74 / 17.89 ±0.14 / 18.10 ms │     no change │
│ QQuery 5  │ 37.25 / 38.85 ±1.34 / 40.41 ms │ 38.07 / 40.86 ±1.76 / 43.35 ms │  1.05x slower │
│ QQuery 6  │ 16.19 / 16.34 ±0.16 / 16.65 ms │ 14.20 / 14.55 ±0.31 / 15.00 ms │ +1.12x faster │
│ QQuery 7  │ 43.80 / 45.63 ±2.15 / 49.73 ms │ 43.47 / 45.85 ±1.47 / 47.58 ms │     no change │
│ QQuery 8  │ 42.72 / 42.87 ±0.12 / 43.07 ms │ 43.10 / 43.47 ±0.32 / 44.02 ms │     no change │
│ QQuery 9  │ 47.97 / 49.08 ±0.66 / 49.68 ms │ 50.51 / 51.47 ±0.87 / 52.64 ms │     no change │
│ QQuery 10 │ 41.87 / 42.60 ±1.09 / 44.77 ms │ 43.08 / 43.79 ±1.05 / 45.83 ms │     no change │
│ QQuery 11 │ 12.90 / 13.18 ±0.24 / 13.63 ms │ 13.65 / 13.88 ±0.30 / 14.47 ms │  1.05x slower │
│ QQuery 12 │ 24.37 / 25.24 ±1.11 / 27.40 ms │ 18.45 / 19.36 ±0.88 / 20.56 ms │ +1.30x faster │
│ QQuery 13 │ 31.79 / 34.19 ±1.95 / 37.53 ms │ 33.00 / 34.96 ±1.66 / 38.00 ms │     no change │
│ QQuery 14 │ 23.62 / 23.84 ±0.12 / 23.97 ms │ 24.15 / 24.65 ±0.37 / 25.25 ms │     no change │
│ QQuery 15 │ 31.20 / 31.63 ±0.51 / 32.63 ms │ 31.07 / 31.44 ±0.26 / 31.82 ms │     no change │
│ QQuery 16 │ 13.80 / 13.96 ±0.10 / 14.09 ms │ 13.79 / 14.01 ±0.16 / 14.19 ms │     no change │
│ QQuery 17 │ 72.87 / 74.41 ±1.28 / 76.47 ms │ 73.54 / 74.33 ±0.68 / 75.21 ms │     no change │
│ QQuery 18 │ 59.08 / 62.08 ±3.39 / 68.68 ms │ 57.96 / 60.99 ±2.52 / 65.20 ms │     no change │
│ QQuery 19 │ 32.66 / 32.90 ±0.36 / 33.61 ms │ 32.31 / 33.38 ±1.25 / 35.81 ms │     no change │
│ QQuery 20 │ 32.00 / 32.31 ±0.25 / 32.75 ms │ 32.79 / 33.43 ±0.46 / 34.21 ms │     no change │
│ QQuery 21 │ 55.63 / 57.71 ±1.31 / 59.50 ms │ 58.01 / 59.72 ±1.42 / 61.53 ms │     no change │
│ QQuery 22 │ 14.55 / 14.78 ±0.24 / 15.23 ms │ 14.37 / 14.57 ±0.21 / 14.98 ms │     no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                     ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 759.54ms │
│ Total Time (lift-selectivity-stats)   │ 766.87ms │
│ Average Time (HEAD)                   │  34.52ms │
│ Average Time (lift-selectivity-stats) │  34.86ms │
│ Queries Faster                        │        2 │
│ Queries Slower                        │        4 │
│ Queries with No Change                │       16 │
│ Queries with Failure                  │        0 │
└───────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 1.2 GiB
Avg memory 520.1 MiB
CPU user 22.2s
CPU sys 1.7s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 1.3 GiB
Avg memory 536.9 MiB
CPU user 22.5s
CPU sys 1.8s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                   HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │            6.35 / 6.90 ±0.83 / 8.54 ms │           6.14 / 6.58 ±0.77 / 8.12 ms │     no change │
│ QQuery 2  │         81.53 / 81.97 ±0.28 / 82.29 ms │        81.66 / 82.16 ±0.26 / 82.37 ms │     no change │
│ QQuery 3  │         29.13 / 29.67 ±0.41 / 30.26 ms │        29.32 / 29.64 ±0.18 / 29.86 ms │     no change │
│ QQuery 4  │      530.90 / 536.72 ±3.32 / 540.48 ms │    509.57 / 543.42 ±29.95 / 585.76 ms │     no change │
│ QQuery 5  │         52.22 / 52.52 ±0.27 / 52.89 ms │        53.86 / 54.39 ±0.31 / 54.73 ms │     no change │
│ QQuery 6  │         36.46 / 36.66 ±0.15 / 36.91 ms │        39.67 / 40.44 ±0.52 / 41.27 ms │  1.10x slower │
│ QQuery 7  │        95.03 / 98.17 ±4.41 / 106.52 ms │      97.59 / 100.99 ±3.18 / 106.69 ms │     no change │
│ QQuery 8  │         37.16 / 37.56 ±0.35 / 38.17 ms │        39.28 / 39.69 ±0.37 / 40.37 ms │  1.06x slower │
│ QQuery 9  │         54.09 / 54.59 ±0.62 / 55.74 ms │        55.62 / 57.20 ±1.78 / 60.68 ms │     no change │
│ QQuery 10 │         62.89 / 63.38 ±0.27 / 63.72 ms │        64.22 / 65.07 ±1.35 / 67.73 ms │     no change │
│ QQuery 11 │     333.55 / 355.80 ±18.91 / 381.44 ms │    300.01 / 312.34 ±13.31 / 338.01 ms │ +1.14x faster │
│ QQuery 12 │         31.04 / 31.39 ±0.29 / 31.92 ms │        29.25 / 29.59 ±0.21 / 29.88 ms │ +1.06x faster │
│ QQuery 13 │      119.56 / 123.13 ±3.53 / 128.13 ms │     121.27 / 123.67 ±2.50 / 128.32 ms │     no change │
│ QQuery 14 │      412.81 / 418.26 ±6.25 / 429.76 ms │     415.27 / 423.97 ±6.11 / 433.52 ms │     no change │
│ QQuery 15 │         59.63 / 65.66 ±3.21 / 69.29 ms │        65.00 / 66.01 ±0.88 / 67.64 ms │     no change │
│ QQuery 16 │            7.24 / 7.41 ±0.13 / 7.62 ms │           7.09 / 7.19 ±0.11 / 7.37 ms │     no change │
│ QQuery 17 │         80.77 / 82.97 ±1.88 / 86.28 ms │        82.69 / 85.82 ±4.83 / 95.39 ms │     no change │
│ QQuery 18 │      125.03 / 126.31 ±1.03 / 127.83 ms │     129.98 / 131.46 ±0.79 / 132.13 ms │     no change │
│ QQuery 19 │         42.02 / 42.83 ±1.21 / 45.22 ms │        43.05 / 44.51 ±1.54 / 47.35 ms │     no change │
│ QQuery 20 │         35.22 / 35.77 ±0.38 / 36.35 ms │        37.87 / 38.57 ±0.46 / 38.99 ms │  1.08x slower │
│ QQuery 21 │         17.14 / 17.46 ±0.32 / 18.09 ms │        18.08 / 18.25 ±0.10 / 18.38 ms │     no change │
│ QQuery 22 │         62.96 / 65.59 ±1.39 / 66.77 ms │        68.78 / 69.01 ±0.20 / 69.36 ms │  1.05x slower │
│ QQuery 23 │      335.85 / 340.58 ±4.04 / 345.91 ms │     348.83 / 356.28 ±5.66 / 365.75 ms │     no change │
│ QQuery 24 │      228.23 / 228.99 ±0.63 / 230.04 ms │     232.79 / 235.79 ±3.03 / 241.14 ms │     no change │
│ QQuery 25 │      111.45 / 115.71 ±4.64 / 124.76 ms │     115.89 / 117.81 ±2.13 / 121.75 ms │     no change │
│ QQuery 26 │         57.95 / 58.07 ±0.10 / 58.18 ms │        58.24 / 59.29 ±0.94 / 60.89 ms │     no change │
│ QQuery 27 │            6.69 / 6.78 ±0.12 / 7.02 ms │           7.09 / 7.25 ±0.11 / 7.41 ms │  1.07x slower │
│ QQuery 28 │         57.54 / 61.02 ±1.78 / 62.33 ms │        56.67 / 58.24 ±1.95 / 61.97 ms │     no change │
│ QQuery 29 │       99.60 / 102.08 ±2.63 / 107.11 ms │      99.98 / 101.31 ±1.30 / 103.60 ms │     no change │
│ QQuery 30 │         33.73 / 34.07 ±0.24 / 34.42 ms │        32.76 / 33.30 ±0.58 / 34.22 ms │     no change │
│ QQuery 31 │      112.42 / 115.66 ±4.17 / 123.88 ms │     111.49 / 113.61 ±2.39 / 117.88 ms │     no change │
│ QQuery 32 │         21.23 / 21.56 ±0.29 / 22.01 ms │        20.30 / 20.71 ±0.42 / 21.48 ms │     no change │
│ QQuery 33 │         39.09 / 39.36 ±0.17 / 39.61 ms │        38.07 / 38.53 ±0.54 / 39.56 ms │     no change │
│ QQuery 34 │          9.74 / 10.02 ±0.21 / 10.36 ms │         9.57 / 10.05 ±0.32 / 10.46 ms │     no change │
│ QQuery 35 │         74.09 / 74.90 ±0.53 / 75.53 ms │        70.69 / 71.58 ±0.64 / 72.32 ms │     no change │
│ QQuery 36 │            6.24 / 6.38 ±0.09 / 6.53 ms │           5.87 / 6.03 ±0.23 / 6.50 ms │ +1.06x faster │
│ QQuery 37 │            7.12 / 7.27 ±0.09 / 7.38 ms │           6.86 / 6.91 ±0.03 / 6.94 ms │     no change │
│ QQuery 38 │         63.88 / 66.39 ±1.52 / 68.23 ms │        63.21 / 64.10 ±0.83 / 65.54 ms │     no change │
│ QQuery 39 │     454.30 / 472.57 ±12.51 / 485.53 ms │     481.95 / 485.95 ±4.09 / 493.73 ms │     no change │
│ QQuery 40 │         23.17 / 23.53 ±0.28 / 24.00 ms │        23.74 / 24.02 ±0.19 / 24.32 ms │     no change │
│ QQuery 41 │         11.26 / 11.45 ±0.20 / 11.82 ms │        11.69 / 11.87 ±0.15 / 12.01 ms │     no change │
│ QQuery 42 │         23.70 / 23.91 ±0.16 / 24.19 ms │        24.01 / 24.30 ±0.18 / 24.47 ms │     no change │
│ QQuery 43 │            4.72 / 4.84 ±0.15 / 5.13 ms │           5.00 / 5.10 ±0.09 / 5.26 ms │  1.05x slower │
│ QQuery 44 │            8.79 / 8.90 ±0.09 / 9.06 ms │         9.21 / 10.68 ±2.44 / 15.54 ms │  1.20x slower │
│ QQuery 45 │         42.44 / 46.67 ±2.92 / 50.96 ms │        43.64 / 46.61 ±3.64 / 53.57 ms │     no change │
│ QQuery 46 │         12.59 / 13.15 ±0.38 / 13.64 ms │        12.52 / 12.92 ±0.23 / 13.17 ms │     no change │
│ QQuery 47 │      274.90 / 283.17 ±6.04 / 290.54 ms │    232.20 / 247.01 ±10.27 / 260.25 ms │ +1.15x faster │
│ QQuery 48 │        97.22 / 99.97 ±2.51 / 104.17 ms │       97.28 / 99.40 ±3.74 / 106.88 ms │     no change │
│ QQuery 49 │         76.82 / 78.79 ±1.92 / 82.14 ms │        77.29 / 79.30 ±2.22 / 83.54 ms │     no change │
│ QQuery 50 │         58.86 / 59.42 ±0.29 / 59.65 ms │        60.69 / 61.25 ±0.42 / 61.77 ms │     no change │
│ QQuery 51 │         91.04 / 95.58 ±2.54 / 98.41 ms │       94.14 / 97.43 ±3.10 / 103.11 ms │     no change │
│ QQuery 52 │         24.62 / 24.85 ±0.12 / 24.98 ms │        24.88 / 25.19 ±0.32 / 25.80 ms │     no change │
│ QQuery 53 │         29.10 / 29.73 ±0.56 / 30.72 ms │        30.09 / 30.38 ±0.25 / 30.83 ms │     no change │
│ QQuery 54 │         54.57 / 54.77 ±0.18 / 55.02 ms │        56.39 / 56.71 ±0.28 / 57.18 ms │     no change │
│ QQuery 55 │         23.33 / 25.04 ±2.89 / 30.80 ms │        23.51 / 23.88 ±0.25 / 24.16 ms │     no change │
│ QQuery 56 │         40.08 / 40.49 ±0.40 / 41.03 ms │        39.53 / 40.35 ±0.75 / 41.67 ms │     no change │
│ QQuery 57 │      173.56 / 178.16 ±4.88 / 185.64 ms │     181.30 / 184.00 ±3.79 / 191.48 ms │     no change │
│ QQuery 58 │      112.41 / 114.35 ±2.00 / 117.98 ms │     116.52 / 118.68 ±1.98 / 122.39 ms │     no change │
│ QQuery 59 │      117.03 / 118.82 ±2.18 / 122.85 ms │     119.00 / 120.44 ±2.25 / 124.93 ms │     no change │
│ QQuery 60 │         39.07 / 39.43 ±0.55 / 40.50 ms │        39.12 / 39.89 ±0.74 / 41.26 ms │     no change │
│ QQuery 61 │         12.79 / 12.96 ±0.24 / 13.43 ms │        12.78 / 12.93 ±0.15 / 13.18 ms │     no change │
│ QQuery 62 │         46.04 / 46.53 ±0.30 / 46.86 ms │        46.56 / 46.82 ±0.23 / 47.17 ms │     no change │
│ QQuery 63 │         29.46 / 29.66 ±0.12 / 29.82 ms │        29.90 / 30.14 ±0.18 / 30.42 ms │     no change │
│ QQuery 64 │      393.40 / 403.22 ±7.87 / 412.51 ms │     409.67 / 422.66 ±9.22 / 432.80 ms │     no change │
│ QQuery 65 │      142.86 / 148.15 ±4.23 / 155.38 ms │     155.28 / 163.82 ±9.39 / 176.86 ms │  1.11x slower │
│ QQuery 66 │         79.14 / 79.94 ±0.50 / 80.63 ms │        84.29 / 88.44 ±4.76 / 96.41 ms │  1.11x slower │
│ QQuery 67 │     249.92 / 263.53 ±11.28 / 278.00 ms │     261.15 / 270.86 ±7.81 / 283.59 ms │     no change │
│ QQuery 68 │         12.20 / 12.45 ±0.16 / 12.68 ms │        12.22 / 12.45 ±0.19 / 12.69 ms │     no change │
│ QQuery 69 │         58.19 / 58.83 ±0.68 / 60.08 ms │        58.17 / 58.55 ±0.23 / 58.90 ms │     no change │
│ QQuery 70 │     107.92 / 117.09 ±11.29 / 138.38 ms │     108.99 / 116.81 ±9.62 / 135.17 ms │     no change │
│ QQuery 71 │         36.40 / 37.03 ±0.67 / 38.32 ms │        36.03 / 36.79 ±0.64 / 37.87 ms │     no change │
│ QQuery 72 │ 1994.07 / 2160.31 ±103.26 / 2279.34 ms │ 2299.53 / 2337.82 ±30.30 / 2381.70 ms │  1.08x slower │
│ QQuery 73 │            9.44 / 9.69 ±0.18 / 9.90 ms │          9.33 / 9.61 ±0.28 / 10.08 ms │     no change │
│ QQuery 74 │      171.51 / 177.00 ±7.12 / 191.07 ms │     174.06 / 179.43 ±5.02 / 187.50 ms │     no change │
│ QQuery 75 │      148.20 / 149.59 ±1.43 / 151.46 ms │     149.53 / 153.24 ±5.86 / 164.93 ms │     no change │
│ QQuery 76 │         34.90 / 35.52 ±0.55 / 36.22 ms │        36.71 / 36.97 ±0.22 / 37.38 ms │     no change │
│ QQuery 77 │         62.48 / 64.57 ±3.41 / 71.36 ms │        62.40 / 64.31 ±2.41 / 68.83 ms │     no change │
│ QQuery 78 │      185.35 / 191.94 ±7.35 / 206.02 ms │     193.24 / 201.12 ±7.50 / 215.36 ms │     no change │
│ QQuery 79 │         67.26 / 68.57 ±0.81 / 69.37 ms │        68.19 / 68.85 ±0.63 / 69.90 ms │     no change │
│ QQuery 80 │      103.50 / 108.87 ±5.31 / 117.65 ms │     102.71 / 104.97 ±1.66 / 107.81 ms │     no change │
│ QQuery 81 │         26.42 / 26.95 ±0.44 / 27.51 ms │        26.53 / 27.00 ±0.39 / 27.51 ms │     no change │
│ QQuery 82 │         17.07 / 17.60 ±0.32 / 18.01 ms │        16.91 / 17.24 ±0.23 / 17.51 ms │     no change │
│ QQuery 83 │         40.13 / 41.05 ±0.74 / 42.39 ms │        40.57 / 41.19 ±0.37 / 41.61 ms │     no change │
│ QQuery 84 │         35.70 / 35.84 ±0.12 / 36.00 ms │        35.52 / 38.07 ±4.69 / 47.45 ms │  1.06x slower │
│ QQuery 85 │      110.56 / 114.58 ±3.99 / 121.95 ms │     108.58 / 110.67 ±2.27 / 114.70 ms │     no change │
│ QQuery 86 │         25.62 / 26.23 ±0.58 / 27.23 ms │        25.53 / 25.71 ±0.14 / 25.92 ms │     no change │
│ QQuery 87 │         65.92 / 68.06 ±1.49 / 69.49 ms │        63.29 / 64.87 ±0.99 / 66.05 ms │     no change │
│ QQuery 88 │         63.35 / 66.35 ±4.12 / 74.37 ms │        63.47 / 65.77 ±2.57 / 70.57 ms │     no change │
│ QQuery 89 │         36.80 / 37.24 ±0.28 / 37.67 ms │        36.54 / 37.61 ±0.54 / 37.95 ms │     no change │
│ QQuery 90 │         17.41 / 17.67 ±0.21 / 18.00 ms │        17.57 / 17.77 ±0.15 / 18.00 ms │     no change │
│ QQuery 91 │         45.79 / 46.17 ±0.32 / 46.66 ms │        45.78 / 46.28 ±0.34 / 46.68 ms │     no change │
│ QQuery 92 │         30.28 / 31.35 ±0.91 / 32.67 ms │        30.70 / 32.80 ±2.48 / 37.46 ms │     no change │
│ QQuery 93 │         51.09 / 52.10 ±1.14 / 54.30 ms │        52.11 / 52.80 ±0.95 / 54.64 ms │     no change │
│ QQuery 94 │         40.26 / 42.10 ±2.63 / 47.32 ms │        40.02 / 40.42 ±0.30 / 40.78 ms │     no change │
│ QQuery 95 │         86.94 / 88.36 ±1.30 / 90.63 ms │        85.83 / 86.50 ±0.36 / 86.86 ms │     no change │
│ QQuery 96 │         24.97 / 25.17 ±0.18 / 25.45 ms │        24.88 / 26.52 ±2.89 / 32.30 ms │  1.05x slower │
│ QQuery 97 │         47.09 / 48.50 ±1.97 / 52.36 ms │        47.16 / 47.87 ±0.73 / 49.19 ms │     no change │
│ QQuery 98 │         44.12 / 45.86 ±1.42 / 48.20 ms │        43.14 / 44.39 ±0.97 / 45.75 ms │     no change │
│ QQuery 99 │         70.85 / 71.18 ±0.28 / 71.67 ms │        70.91 / 71.81 ±0.93 / 73.45 ms │     no change │
└───────────┴────────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10584.91ms │
│ Total Time (lift-selectivity-stats)   │ 10828.01ms │
│ Average Time (HEAD)                   │   106.92ms │
│ Average Time (lift-selectivity-stats) │   109.37ms │
│ Queries Faster                        │          4 │
│ Queries Slower                        │         12 │
│ Queries with No Change                │         83 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 1.9 GiB
Avg memory 1.3 GiB
CPU user 240.7s
CPU sys 6.4s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 1.7 GiB
Avg memory 1.2 GiB
CPU user 248.5s
CPU sys 6.6s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.15 / 3.34 ±4.28 / 11.90 ms │          1.16 / 3.31 ±4.24 / 11.79 ms │     no change │
│ QQuery 1  │        12.37 / 12.82 ±0.25 / 13.09 ms │        12.45 / 12.68 ±0.14 / 12.87 ms │     no change │
│ QQuery 2  │        35.76 / 36.02 ±0.19 / 36.24 ms │        35.34 / 35.66 ±0.26 / 36.06 ms │     no change │
│ QQuery 3  │        30.10 / 30.64 ±0.83 / 32.29 ms │        30.05 / 30.58 ±0.47 / 31.41 ms │     no change │
│ QQuery 4  │     220.62 / 225.40 ±2.69 / 228.86 ms │     223.30 / 226.50 ±2.34 / 230.03 ms │     no change │
│ QQuery 5  │     272.29 / 274.38 ±1.67 / 277.23 ms │     269.12 / 274.12 ±3.00 / 277.45 ms │     no change │
│ QQuery 6  │           1.19 / 1.34 ±0.25 / 1.84 ms │           1.21 / 1.35 ±0.20 / 1.74 ms │     no change │
│ QQuery 7  │        13.72 / 13.99 ±0.14 / 14.14 ms │        13.69 / 13.77 ±0.05 / 13.82 ms │     no change │
│ QQuery 8  │     323.48 / 325.77 ±1.74 / 328.29 ms │     325.40 / 328.78 ±3.33 / 334.40 ms │     no change │
│ QQuery 9  │     453.00 / 461.08 ±7.00 / 472.60 ms │     457.54 / 466.43 ±7.07 / 477.11 ms │     no change │
│ QQuery 10 │        68.55 / 69.38 ±0.56 / 70.03 ms │        68.46 / 69.27 ±0.60 / 70.21 ms │     no change │
│ QQuery 11 │        80.10 / 80.92 ±0.70 / 82.05 ms │        80.80 / 82.01 ±0.99 / 83.21 ms │     no change │
│ QQuery 12 │     266.75 / 272.17 ±3.48 / 277.54 ms │     268.39 / 273.41 ±4.43 / 280.14 ms │     no change │
│ QQuery 13 │     369.05 / 380.66 ±6.12 / 386.62 ms │    369.45 / 383.16 ±14.05 / 405.55 ms │     no change │
│ QQuery 14 │     282.78 / 287.68 ±4.29 / 294.57 ms │     281.99 / 289.21 ±7.44 / 303.02 ms │     no change │
│ QQuery 15 │     269.40 / 274.06 ±4.98 / 283.45 ms │    271.89 / 281.16 ±11.05 / 302.17 ms │     no change │
│ QQuery 16 │     614.37 / 625.69 ±7.62 / 634.22 ms │    616.68 / 629.42 ±10.43 / 648.08 ms │     no change │
│ QQuery 17 │     620.75 / 631.75 ±7.25 / 640.30 ms │    629.23 / 643.81 ±15.62 / 673.81 ms │     no change │
│ QQuery 18 │ 1262.23 / 1310.18 ±34.52 / 1345.44 ms │ 1282.92 / 1308.86 ±18.29 / 1333.03 ms │     no change │
│ QQuery 19 │        27.12 / 31.98 ±9.23 / 50.44 ms │        27.38 / 27.63 ±0.20 / 27.89 ms │ +1.16x faster │
│ QQuery 20 │    512.53 / 526.99 ±12.94 / 550.23 ms │    516.67 / 539.97 ±27.88 / 594.37 ms │     no change │
│ QQuery 21 │     511.97 / 518.80 ±7.38 / 533.00 ms │     513.07 / 522.76 ±7.61 / 534.06 ms │     no change │
│ QQuery 22 │     980.05 / 987.95 ±6.73 / 997.31 ms │   993.50 / 1004.72 ±7.33 / 1016.31 ms │     no change │
│ QQuery 23 │ 3194.05 / 3220.02 ±26.94 / 3271.84 ms │ 3199.61 / 3223.71 ±19.48 / 3256.96 ms │     no change │
│ QQuery 24 │        41.08 / 43.77 ±4.58 / 52.91 ms │        40.88 / 45.06 ±4.64 / 53.49 ms │     no change │
│ QQuery 25 │     110.61 / 112.12 ±1.30 / 113.89 ms │     110.66 / 111.63 ±1.27 / 113.91 ms │     no change │
│ QQuery 26 │        41.50 / 42.17 ±0.77 / 43.60 ms │        41.41 / 42.26 ±0.90 / 43.64 ms │     no change │
│ QQuery 27 │     663.18 / 671.49 ±7.01 / 684.22 ms │    674.80 / 688.64 ±11.27 / 705.47 ms │     no change │
│ QQuery 28 │ 3023.66 / 3046.23 ±19.42 / 3072.66 ms │ 3021.17 / 3052.27 ±20.47 / 3075.67 ms │     no change │
│ QQuery 29 │        40.01 / 43.01 ±5.48 / 53.96 ms │        39.77 / 40.37 ±0.54 / 41.37 ms │ +1.07x faster │
│ QQuery 30 │    301.05 / 313.07 ±12.08 / 333.90 ms │     304.77 / 314.33 ±8.46 / 328.92 ms │     no change │
│ QQuery 31 │     288.37 / 295.47 ±6.57 / 304.39 ms │     282.02 / 291.41 ±5.85 / 299.14 ms │     no change │
│ QQuery 32 │    924.55 / 945.01 ±12.58 / 959.87 ms │   962.39 / 982.06 ±18.61 / 1014.72 ms │     no change │
│ QQuery 33 │  1454.78 / 1464.30 ±8.83 / 1479.68 ms │ 1468.74 / 1487.54 ±11.10 / 1499.20 ms │     no change │
│ QQuery 34 │ 1467.39 / 1504.31 ±26.29 / 1538.73 ms │ 1482.44 / 1534.67 ±67.38 / 1667.78 ms │     no change │
│ QQuery 35 │    282.94 / 310.03 ±51.13 / 412.29 ms │    287.59 / 326.84 ±59.94 / 445.15 ms │  1.05x slower │
│ QQuery 36 │        65.65 / 73.93 ±9.99 / 93.42 ms │        66.24 / 70.91 ±4.05 / 78.45 ms │     no change │
│ QQuery 37 │        35.95 / 39.40 ±5.20 / 49.74 ms │        35.56 / 40.64 ±6.86 / 53.52 ms │     no change │
│ QQuery 38 │        43.47 / 50.44 ±8.22 / 65.58 ms │        40.35 / 44.18 ±2.58 / 47.05 ms │ +1.14x faster │
│ QQuery 39 │    135.34 / 153.23 ±10.27 / 164.94 ms │     148.11 / 154.00 ±3.64 / 158.93 ms │     no change │
│ QQuery 40 │        14.04 / 16.00 ±3.10 / 22.16 ms │        13.62 / 14.07 ±0.35 / 14.60 ms │ +1.14x faster │
│ QQuery 41 │        13.79 / 16.91 ±3.75 / 23.19 ms │        13.40 / 13.57 ±0.14 / 13.79 ms │ +1.25x faster │
│ QQuery 42 │        13.04 / 17.53 ±5.73 / 27.67 ms │        12.89 / 14.19 ±2.51 / 19.20 ms │ +1.24x faster │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 19761.45ms │
│ Total Time (lift-selectivity-stats)   │ 19940.88ms │
│ Average Time (HEAD)                   │   459.57ms │
│ Average Time (lift-selectivity-stats) │   463.74ms │
│ Queries Faster                        │          6 │
│ Queries Slower                        │          1 │
│ Queries with No Change                │         36 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 11.5 GiB
Avg memory 4.4 GiB
CPU user 1009.6s
CPU sys 69.5s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 105.0s
Peak memory 11.7 GiB
Avg memory 4.3 GiB
CPU user 1014.7s
CPU sys 71.7s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

group                                                                            HEAD                                   lift-selectivity-stats
-----                                                                            ----                                   ----------------------
predicate_eval/cardinality_q30_k2_cardinality                                    1.00    745.8±6.22µs        ? ?/sec    1.03    764.6±5.77µs        ? ?/sec
predicate_eval/cardinality_q31_k4_cardinality                                    1.00    909.7±2.78µs        ? ?/sec    1.02    932.3±6.75µs        ? ?/sec
predicate_eval/cardinality_q32_k8_cardinality                                    1.03  1414.7±10.58µs        ? ?/sec    1.00  1370.3±12.79µs        ? ?/sec
predicate_eval/cardinality_q33_k16_cardinality                                   1.48      3.7±0.01ms        ? ?/sec    1.00      2.5±0.02ms        ? ?/sec
predicate_eval/correlation_q70_independent_correlation                           1.00    783.5±4.29µs        ? ?/sec    1.02    795.5±5.69µs        ? ?/sec
predicate_eval/correlation_q71_positive_correlation                              1.00    708.2±5.64µs        ? ?/sec    1.01    714.7±8.36µs        ? ?/sec
predicate_eval/correlation_q72_anti_correlation                                  1.01    696.3±3.89µs        ? ?/sec    1.00    688.7±5.12µs        ? ?/sec
predicate_eval/cost_q10_expensive_first_cost                                     1.00    861.1±6.99µs        ? ?/sec    1.15    986.7±9.44µs        ? ?/sec
predicate_eval/cost_q11_cheap_first_cost                                         1.00    862.8±3.25µs        ? ?/sec    1.16    997.4±9.82µs        ? ?/sec
predicate_eval/costsel_q01_regexp_selective_last_costsel                         1.82      5.8±0.03ms        ? ?/sec    1.00      3.2±0.02ms        ? ?/sec
predicate_eval/costsel_q02_regexp_selective_first_costsel                        1.00      2.2±0.01ms        ? ?/sec    1.01      2.2±0.01ms        ? ?/sec
predicate_eval/costsel_q03_cheap_unselective_then_expensive_selective_costsel    1.00  1747.8±10.44µs        ? ?/sec    1.00   1741.7±8.01µs        ? ?/sec
predicate_eval/drift_q80_a_then_b_drift                                          1.00    696.6±4.96µs        ? ?/sec    1.02    710.9±5.53µs        ? ?/sec
predicate_eval/drift_q81_b_then_a_drift                                          1.00    682.0±5.08µs        ? ?/sec    1.03    703.6±5.42µs        ? ?/sec
predicate_eval/neutral_q60_cheap_uniform_neutral                                 1.03   1091.8±7.18µs        ? ?/sec    1.00   1060.1±7.40µs        ? ?/sec
predicate_eval/neutral_q61_expensive_uniform_neutral                             1.01      4.8±0.02ms        ? ?/sec    1.00      4.7±0.03ms        ? ?/sec
predicate_eval/scale_q50_5k_scale                                                1.00    488.9±2.14µs        ? ?/sec    1.01    493.7±6.90µs        ? ?/sec
predicate_eval/scale_q51_100k_scale                                              1.00    617.6±4.29µs        ? ?/sec    1.01    626.5±6.85µs        ? ?/sec
predicate_eval/scale_q52_5m_scale                                                1.00      6.0±0.04ms        ? ?/sec    1.00      6.0±0.02ms        ? ?/sec
predicate_eval/scale_q53_50m_scale                                               1.00     54.4±0.18ms        ? ?/sec    1.01     54.7±0.10ms        ? ?/sec
predicate_eval/selectivity_q20_unselective_first_selectivity                     1.00    746.5±6.62µs        ? ?/sec    1.02    758.2±3.56µs        ? ?/sec
predicate_eval/selectivity_q21_selective_first_selectivity                       1.00    745.1±7.01µs        ? ?/sec    1.02    759.8±4.84µs        ? ?/sec
predicate_eval/width_q40_narrow_width                                            1.76      2.8±0.02ms        ? ?/sec    1.00  1578.4±13.65µs        ? ?/sec
predicate_eval/width_q41_wide_width                                              1.82      5.9±0.03ms        ? ?/sec    1.00      3.3±0.02ms        ? ?/sec
predicate_eval/width_q42_xwide_width                                             2.12     24.1±0.14ms        ? ?/sec    1.00     11.3±0.02ms        ? ?/sec

Resource Usage

predicate_eval — base (merge-base)

Metric Value
Wall time 750.2s
Peak memory 9.9 GiB
Avg memory 224.6 MiB
CPU user 1250.4s
CPU sys 22.5s
Peak spill 0 B

predicate_eval — branch

Metric Value
Wall time 975.2s
Peak memory 9.3 GiB
Avg memory 185.4 MiB
CPU user 1238.9s
CPU sys 23.3s
Peak spill 0 B

File an issue against this benchmark runner

…s no proposal"

This reverts commit be79329.

The exploration trials won the correlated case (predicate_eval q73, 1.28x)
but dragged tied and guard-pattern filters through per-query trial churn:
CI showed TPC-DS 4 faster / 12 slower and predicate_eval cost_q10/q11 at
1.15-1.16x. Two rounds of statistical hardening (sequential early stopping,
a 5% adoption margin) moved the cost between shapes rather than removing
it — exploration's wins amortize across queries, but its costs are paid per
query, so it structurally needs cross-query persistence of the learned
order (cf. DuckDB's multi-file adaptive filter cache) before it can be
on by default. Parked, with the early-stopping/margin work, for a follow-up
on top of order persistence.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@adriangb

Copy link
Copy Markdown
Contributor Author

run benchmark predicate_eval

env:
  DATAFUSION_EXECUTION_ADAPTIVE_FILTER_REORDERING: true

@adriangb

Copy link
Copy Markdown
Contributor Author

run benchmarks

env:
  DATAFUSION_EXECUTION_ADAPTIVE_FILTER_REORDERING: true

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4690924723-554-lf42t 6.12.68+ #1 SMP Sat May 2 07:49:07 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (796bca3) to 0f8a121 (merge-base) diff using: predicate_eval
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4690924833-551-qxcdv 6.12.68+ #1 SMP Sat May 2 07:49:07 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (796bca3) to 0f8a121 (merge-base) diff using: clickbench_partitioned
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4690924833-552-4jbhn 6.12.68+ #1 SMP Sat May 2 07:49:07 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (796bca3) to 0f8a121 (merge-base) diff using: tpcds
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4690924833-553-bzk72 6.12.68+ #1 SMP Sat May 2 07:49:07 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (796bca3) to 0f8a121 (merge-base) diff using: tpch
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpch_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                           HEAD ┃         lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │ 38.60 / 39.69 ±1.18 / 41.24 ms │ 38.34 / 39.62 ±1.47 / 41.75 ms │     no change │
│ QQuery 2  │ 18.65 / 19.03 ±0.33 / 19.60 ms │ 18.67 / 19.13 ±0.50 / 20.07 ms │     no change │
│ QQuery 3  │ 31.23 / 32.75 ±1.21 / 33.89 ms │ 31.05 / 32.01 ±1.47 / 34.94 ms │     no change │
│ QQuery 4  │ 17.53 / 18.53 ±0.82 / 19.71 ms │ 17.62 / 18.07 ±0.58 / 19.19 ms │     no change │
│ QQuery 5  │ 37.58 / 39.57 ±1.46 / 40.90 ms │ 39.81 / 40.57 ±0.45 / 41.11 ms │     no change │
│ QQuery 6  │ 16.07 / 16.67 ±0.79 / 18.14 ms │ 14.00 / 14.26 ±0.22 / 14.58 ms │ +1.17x faster │
│ QQuery 7  │ 43.52 / 45.18 ±1.69 / 47.79 ms │ 44.17 / 45.59 ±0.75 / 46.30 ms │     no change │
│ QQuery 8  │ 43.19 / 44.34 ±1.29 / 46.45 ms │ 42.92 / 43.86 ±1.18 / 46.16 ms │     no change │
│ QQuery 9  │ 48.79 / 50.12 ±0.92 / 51.61 ms │ 49.52 / 51.22 ±1.07 / 52.18 ms │     no change │
│ QQuery 10 │ 42.17 / 42.31 ±0.12 / 42.49 ms │ 42.25 / 42.63 ±0.32 / 43.03 ms │     no change │
│ QQuery 11 │ 12.91 / 13.27 ±0.20 / 13.50 ms │ 13.19 / 13.40 ±0.18 / 13.74 ms │     no change │
│ QQuery 12 │ 23.86 / 24.20 ±0.29 / 24.73 ms │ 17.74 / 18.06 ±0.18 / 18.23 ms │ +1.34x faster │
│ QQuery 13 │ 31.52 / 34.48 ±3.05 / 40.39 ms │ 31.51 / 34.47 ±2.83 / 38.79 ms │     no change │
│ QQuery 14 │ 23.72 / 23.97 ±0.21 / 24.36 ms │ 23.62 / 23.91 ±0.18 / 24.16 ms │     no change │
│ QQuery 15 │ 31.32 / 31.86 ±0.84 / 33.52 ms │ 31.46 / 32.02 ±0.80 / 33.57 ms │     no change │
│ QQuery 16 │ 13.88 / 14.30 ±0.28 / 14.76 ms │ 13.95 / 14.30 ±0.20 / 14.54 ms │     no change │
│ QQuery 17 │ 73.99 / 76.99 ±2.12 / 79.66 ms │ 74.67 / 75.83 ±1.46 / 78.68 ms │     no change │
│ QQuery 18 │ 59.17 / 61.13 ±2.11 / 65.12 ms │ 58.56 / 60.36 ±1.00 / 61.63 ms │     no change │
│ QQuery 19 │ 32.85 / 33.42 ±0.43 / 34.18 ms │ 32.77 / 33.32 ±0.57 / 34.35 ms │     no change │
│ QQuery 20 │ 32.13 / 32.39 ±0.28 / 32.90 ms │ 32.42 / 32.72 ±0.27 / 33.18 ms │     no change │
│ QQuery 21 │ 57.44 / 59.35 ±1.58 / 61.50 ms │ 56.24 / 57.94 ±1.23 / 59.52 ms │     no change │
│ QQuery 22 │ 13.92 / 14.33 ±0.34 / 14.70 ms │ 14.07 / 14.35 ±0.21 / 14.71 ms │     no change │
└───────────┴────────────────────────────────┴────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━┓
┃ Benchmark Summary                     ┃          ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 767.89ms │
│ Total Time (lift-selectivity-stats)   │ 757.64ms │
│ Average Time (HEAD)                   │  34.90ms │
│ Average Time (lift-selectivity-stats) │  34.44ms │
│ Queries Faster                        │        2 │
│ Queries Slower                        │        0 │
│ Queries with No Change                │       20 │
│ Queries with Failure                  │        0 │
└───────────────────────────────────────┴──────────┘

Resource Usage

tpch — base (merge-base)

Metric Value
Wall time 5.0s
Peak memory 1.2 GiB
Avg memory 519.8 MiB
CPU user 22.5s
CPU sys 1.7s
Peak spill 0 B

tpch — branch

Metric Value
Wall time 5.0s
Peak memory 1.3 GiB
Avg memory 540.4 MiB
CPU user 22.1s
CPU sys 1.7s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark tpcds_sf1.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 1  │           6.17 / 6.67 ±0.83 / 8.32 ms │           5.76 / 6.24 ±0.88 / 7.99 ms │ +1.07x faster │
│ QQuery 2  │        82.13 / 83.12 ±0.58 / 83.71 ms │        79.91 / 80.20 ±0.24 / 80.54 ms │     no change │
│ QQuery 3  │        29.79 / 30.04 ±0.17 / 30.29 ms │        29.04 / 29.27 ±0.18 / 29.46 ms │     no change │
│ QQuery 4  │     557.02 / 563.22 ±6.30 / 574.26 ms │     493.96 / 498.70 ±2.91 / 501.80 ms │ +1.13x faster │
│ QQuery 5  │        53.26 / 53.67 ±0.29 / 54.11 ms │        51.39 / 51.64 ±0.40 / 52.43 ms │     no change │
│ QQuery 6  │        39.13 / 39.43 ±0.22 / 39.77 ms │        36.40 / 36.74 ±0.18 / 36.94 ms │ +1.07x faster │
│ QQuery 7  │      99.30 / 100.08 ±0.58 / 101.03 ms │        93.11 / 93.70 ±0.36 / 94.10 ms │ +1.07x faster │
│ QQuery 8  │        38.75 / 38.87 ±0.14 / 39.14 ms │        37.13 / 38.61 ±2.13 / 42.80 ms │     no change │
│ QQuery 9  │        55.00 / 56.22 ±1.18 / 58.15 ms │        53.53 / 55.63 ±1.85 / 58.37 ms │     no change │
│ QQuery 10 │        65.25 / 65.77 ±0.64 / 66.84 ms │        62.71 / 62.85 ±0.12 / 63.03 ms │     no change │
│ QQuery 11 │     352.83 / 356.78 ±3.86 / 364.09 ms │     307.54 / 312.44 ±5.12 / 320.88 ms │ +1.14x faster │
│ QQuery 12 │        30.65 / 32.01 ±2.04 / 36.02 ms │        28.81 / 29.21 ±0.29 / 29.66 ms │ +1.10x faster │
│ QQuery 13 │     125.02 / 126.55 ±1.28 / 128.57 ms │     119.70 / 120.11 ±0.38 / 120.67 ms │ +1.05x faster │
│ QQuery 14 │     416.04 / 423.41 ±6.37 / 433.01 ms │     410.58 / 414.41 ±6.04 / 426.46 ms │     no change │
│ QQuery 15 │        58.64 / 60.17 ±1.18 / 62.15 ms │        65.00 / 67.67 ±1.72 / 70.22 ms │  1.12x slower │
│ QQuery 16 │           6.81 / 7.00 ±0.26 / 7.51 ms │           6.97 / 7.16 ±0.22 / 7.57 ms │     no change │
│ QQuery 17 │        81.12 / 81.87 ±0.84 / 83.47 ms │        80.81 / 81.68 ±1.19 / 83.98 ms │     no change │
│ QQuery 18 │     124.46 / 125.33 ±0.47 / 125.76 ms │     124.19 / 128.19 ±3.75 / 134.00 ms │     no change │
│ QQuery 19 │        41.65 / 42.95 ±1.95 / 46.80 ms │        43.33 / 43.93 ±0.39 / 44.47 ms │     no change │
│ QQuery 20 │        35.24 / 35.76 ±0.42 / 36.40 ms │        37.50 / 38.51 ±0.60 / 39.26 ms │  1.08x slower │
│ QQuery 21 │        17.09 / 17.27 ±0.15 / 17.49 ms │        17.88 / 19.11 ±1.99 / 23.09 ms │  1.11x slower │
│ QQuery 22 │        61.90 / 62.52 ±0.55 / 63.28 ms │        62.34 / 66.16 ±3.75 / 72.14 ms │  1.06x slower │
│ QQuery 23 │     314.06 / 320.63 ±5.13 / 328.47 ms │    322.84 / 338.81 ±13.77 / 357.49 ms │  1.06x slower │
│ QQuery 24 │     223.38 / 225.67 ±3.29 / 232.13 ms │     224.15 / 228.37 ±3.15 / 232.47 ms │     no change │
│ QQuery 25 │     110.34 / 112.30 ±1.63 / 114.17 ms │     114.66 / 116.28 ±2.11 / 120.40 ms │     no change │
│ QQuery 26 │        57.47 / 58.10 ±0.34 / 58.36 ms │        56.30 / 58.96 ±2.43 / 63.27 ms │     no change │
│ QQuery 27 │           6.70 / 6.82 ±0.15 / 7.12 ms │           6.55 / 6.62 ±0.11 / 6.83 ms │     no change │
│ QQuery 28 │        56.51 / 57.62 ±1.47 / 60.47 ms │        58.19 / 58.99 ±0.96 / 60.35 ms │     no change │
│ QQuery 29 │     101.51 / 104.15 ±3.12 / 110.23 ms │      97.72 / 100.54 ±2.76 / 104.87 ms │     no change │
│ QQuery 30 │        32.94 / 34.83 ±1.07 / 36.06 ms │        34.83 / 37.18 ±3.05 / 43.21 ms │  1.07x slower │
│ QQuery 31 │     115.91 / 118.39 ±1.34 / 119.44 ms │     111.42 / 115.92 ±2.60 / 119.00 ms │     no change │
│ QQuery 32 │        20.54 / 22.26 ±1.81 / 25.61 ms │        21.82 / 22.13 ±0.25 / 22.58 ms │     no change │
│ QQuery 33 │        40.06 / 40.77 ±0.69 / 41.74 ms │        40.11 / 41.05 ±0.90 / 42.75 ms │     no change │
│ QQuery 34 │        10.28 / 10.64 ±0.30 / 11.04 ms │        10.31 / 12.65 ±3.30 / 19.21 ms │  1.19x slower │
│ QQuery 35 │        78.49 / 79.05 ±0.37 / 79.41 ms │        78.43 / 79.53 ±0.71 / 80.63 ms │     no change │
│ QQuery 36 │           6.60 / 6.72 ±0.16 / 7.02 ms │           6.38 / 6.50 ±0.10 / 6.67 ms │     no change │
│ QQuery 37 │          7.55 / 8.43 ±1.47 / 11.36 ms │           7.40 / 7.56 ±0.08 / 7.63 ms │ +1.12x faster │
│ QQuery 38 │        66.15 / 70.36 ±3.09 / 75.66 ms │        68.24 / 69.56 ±1.37 / 72.17 ms │     no change │
│ QQuery 39 │     453.44 / 456.31 ±1.93 / 458.29 ms │     497.26 / 504.68 ±6.50 / 514.91 ms │  1.11x slower │
│ QQuery 40 │        22.93 / 23.76 ±0.56 / 24.49 ms │        24.33 / 24.37 ±0.04 / 24.45 ms │     no change │
│ QQuery 41 │        12.04 / 12.13 ±0.07 / 12.22 ms │        12.02 / 12.17 ±0.13 / 12.31 ms │     no change │
│ QQuery 42 │        24.40 / 24.74 ±0.25 / 25.16 ms │        25.08 / 25.33 ±0.22 / 25.60 ms │     no change │
│ QQuery 43 │           5.20 / 5.29 ±0.09 / 5.46 ms │           5.15 / 5.22 ±0.05 / 5.29 ms │     no change │
│ QQuery 44 │         9.48 / 10.67 ±2.25 / 15.18 ms │           9.35 / 9.48 ±0.08 / 9.57 ms │ +1.13x faster │
│ QQuery 45 │        45.09 / 45.51 ±0.46 / 46.32 ms │        47.39 / 49.16 ±3.16 / 55.48 ms │  1.08x slower │
│ QQuery 46 │        12.26 / 14.13 ±2.89 / 19.87 ms │        12.38 / 14.56 ±3.49 / 21.50 ms │     no change │
│ QQuery 47 │     231.63 / 238.10 ±5.29 / 246.48 ms │     229.74 / 243.13 ±7.55 / 250.92 ms │     no change │
│ QQuery 48 │        95.96 / 96.93 ±1.14 / 99.14 ms │        96.28 / 96.64 ±0.33 / 97.26 ms │     no change │
│ QQuery 49 │        77.26 / 78.60 ±1.43 / 81.24 ms │        76.92 / 81.74 ±6.37 / 94.18 ms │     no change │
│ QQuery 50 │        59.24 / 59.72 ±0.32 / 60.18 ms │        61.48 / 61.89 ±0.29 / 62.32 ms │     no change │
│ QQuery 51 │       91.33 / 94.18 ±4.39 / 102.93 ms │        94.29 / 97.05 ±1.51 / 98.36 ms │     no change │
│ QQuery 52 │        23.91 / 24.31 ±0.43 / 25.12 ms │        26.28 / 27.65 ±1.59 / 30.62 ms │  1.14x slower │
│ QQuery 53 │        29.34 / 31.02 ±2.79 / 36.57 ms │        31.17 / 31.69 ±0.54 / 32.58 ms │     no change │
│ QQuery 54 │        54.71 / 55.00 ±0.25 / 55.40 ms │        58.23 / 58.75 ±0.46 / 59.61 ms │  1.07x slower │
│ QQuery 55 │        23.30 / 23.59 ±0.26 / 24.08 ms │        25.29 / 25.51 ±0.16 / 25.68 ms │  1.08x slower │
│ QQuery 56 │        38.68 / 40.91 ±3.11 / 46.91 ms │        41.56 / 41.80 ±0.19 / 42.04 ms │     no change │
│ QQuery 57 │     175.66 / 177.95 ±1.87 / 179.70 ms │     174.10 / 179.75 ±6.84 / 192.78 ms │     no change │
│ QQuery 58 │     113.70 / 115.93 ±2.44 / 120.54 ms │     115.26 / 118.76 ±2.37 / 122.48 ms │     no change │
│ QQuery 59 │     117.38 / 118.66 ±2.18 / 123.01 ms │     116.39 / 117.07 ±0.52 / 117.98 ms │     no change │
│ QQuery 60 │        39.29 / 40.01 ±0.70 / 41.08 ms │        39.35 / 40.47 ±1.27 / 42.96 ms │     no change │
│ QQuery 61 │        13.08 / 13.45 ±0.60 / 14.63 ms │        12.75 / 12.96 ±0.20 / 13.29 ms │     no change │
│ QQuery 62 │        46.32 / 46.60 ±0.26 / 46.96 ms │        45.26 / 45.72 ±0.40 / 46.43 ms │     no change │
│ QQuery 63 │        29.35 / 29.67 ±0.30 / 30.19 ms │        28.96 / 29.54 ±0.53 / 30.39 ms │     no change │
│ QQuery 64 │    393.45 / 403.57 ±10.08 / 418.63 ms │    393.53 / 409.32 ±14.92 / 436.39 ms │     no change │
│ QQuery 65 │     143.46 / 148.50 ±3.89 / 155.25 ms │     143.35 / 147.51 ±2.76 / 151.39 ms │     no change │
│ QQuery 66 │        84.26 / 84.89 ±0.59 / 86.00 ms │        78.57 / 79.77 ±0.73 / 80.81 ms │ +1.06x faster │
│ QQuery 67 │     283.40 / 285.92 ±2.97 / 290.49 ms │     243.58 / 249.02 ±4.77 / 256.16 ms │ +1.15x faster │
│ QQuery 68 │        11.94 / 14.41 ±3.99 / 22.32 ms │        11.81 / 13.38 ±2.84 / 19.04 ms │ +1.08x faster │
│ QQuery 69 │        57.22 / 57.87 ±0.48 / 58.57 ms │        56.80 / 58.95 ±3.05 / 65.01 ms │     no change │
│ QQuery 70 │     109.10 / 113.23 ±4.19 / 121.10 ms │     104.33 / 107.77 ±4.80 / 116.93 ms │     no change │
│ QQuery 71 │        35.66 / 37.62 ±2.85 / 43.28 ms │        35.06 / 35.50 ±0.40 / 36.18 ms │ +1.06x faster │
│ QQuery 72 │ 2095.11 / 2178.07 ±43.06 / 2214.64 ms │ 2180.71 / 2252.13 ±43.24 / 2292.74 ms │     no change │
│ QQuery 73 │         9.91 / 10.26 ±0.31 / 10.84 ms │           9.22 / 9.49 ±0.29 / 9.90 ms │ +1.08x faster │
│ QQuery 74 │    191.07 / 213.28 ±12.69 / 229.85 ms │     174.29 / 176.68 ±2.35 / 181.16 ms │ +1.21x faster │
│ QQuery 75 │     148.02 / 153.77 ±5.19 / 163.35 ms │     148.68 / 149.61 ±0.84 / 151.12 ms │     no change │
│ QQuery 76 │        35.45 / 35.84 ±0.45 / 36.70 ms │        36.01 / 38.15 ±3.07 / 44.22 ms │  1.06x slower │
│ QQuery 77 │        61.11 / 63.55 ±4.51 / 72.56 ms │        60.52 / 61.42 ±0.68 / 62.18 ms │     no change │
│ QQuery 78 │     185.52 / 190.26 ±3.71 / 194.60 ms │     186.37 / 189.18 ±1.81 / 191.32 ms │     no change │
│ QQuery 79 │        66.91 / 67.16 ±0.18 / 67.43 ms │        67.29 / 67.60 ±0.25 / 67.90 ms │     no change │
│ QQuery 80 │      99.20 / 104.11 ±4.75 / 112.17 ms │     101.72 / 104.44 ±3.16 / 110.16 ms │     no change │
│ QQuery 81 │        25.65 / 25.93 ±0.20 / 26.11 ms │        25.75 / 25.97 ±0.15 / 26.19 ms │     no change │
│ QQuery 82 │        16.38 / 17.15 ±0.91 / 18.91 ms │        16.30 / 16.45 ±0.21 / 16.85 ms │     no change │
│ QQuery 83 │        39.65 / 39.90 ±0.20 / 40.22 ms │        39.33 / 39.64 ±0.21 / 39.89 ms │     no change │
│ QQuery 84 │        34.97 / 37.46 ±4.31 / 46.02 ms │        34.70 / 35.11 ±0.28 / 35.48 ms │ +1.07x faster │
│ QQuery 85 │     107.91 / 110.54 ±3.59 / 117.53 ms │     110.35 / 116.43 ±5.82 / 127.23 ms │  1.05x slower │
│ QQuery 86 │        24.84 / 25.27 ±0.31 / 25.63 ms │        27.11 / 27.49 ±0.29 / 27.88 ms │  1.09x slower │
│ QQuery 87 │        63.24 / 65.24 ±1.76 / 68.45 ms │        70.78 / 72.09 ±0.74 / 72.95 ms │  1.11x slower │
│ QQuery 88 │        62.04 / 62.84 ±0.53 / 63.55 ms │        66.54 / 67.45 ±0.91 / 68.97 ms │  1.07x slower │
│ QQuery 89 │        36.35 / 36.93 ±0.64 / 37.94 ms │        38.45 / 39.08 ±0.53 / 40.05 ms │  1.06x slower │
│ QQuery 90 │        17.00 / 17.15 ±0.14 / 17.35 ms │        17.96 / 18.25 ±0.29 / 18.80 ms │  1.06x slower │
│ QQuery 91 │        45.06 / 45.33 ±0.19 / 45.56 ms │        45.80 / 47.01 ±0.98 / 48.18 ms │     no change │
│ QQuery 92 │        29.41 / 31.87 ±3.92 / 39.66 ms │        29.60 / 29.97 ±0.41 / 30.52 ms │ +1.06x faster │
│ QQuery 93 │        50.45 / 51.80 ±1.09 / 53.47 ms │        51.71 / 53.40 ±2.06 / 57.29 ms │     no change │
│ QQuery 94 │        39.01 / 40.43 ±1.99 / 44.37 ms │        39.58 / 40.20 ±0.39 / 40.70 ms │     no change │
│ QQuery 95 │        84.89 / 85.62 ±0.47 / 86.22 ms │        85.08 / 85.49 ±0.24 / 85.79 ms │     no change │
│ QQuery 96 │        24.28 / 25.42 ±1.82 / 29.06 ms │        24.48 / 24.87 ±0.46 / 25.77 ms │     no change │
│ QQuery 97 │        46.02 / 46.76 ±0.56 / 47.62 ms │        46.87 / 48.57 ±2.61 / 53.75 ms │     no change │
│ QQuery 98 │        43.60 / 45.21 ±2.75 / 50.67 ms │        44.77 / 46.34 ±0.86 / 47.33 ms │     no change │
│ QQuery 99 │        70.02 / 70.41 ±0.31 / 70.91 ms │        69.92 / 70.45 ±0.40 / 71.13 ms │     no change │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 10606.14ms │
│ Total Time (lift-selectivity-stats)   │ 10592.05ms │
│ Average Time (HEAD)                   │   107.13ms │
│ Average Time (lift-selectivity-stats) │   106.99ms │
│ Queries Faster                        │         17 │
│ Queries Slower                        │         19 │
│ Queries with No Change                │         63 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

tpcds — base (merge-base)

Metric Value
Wall time 55.0s
Peak memory 2.0 GiB
Avg memory 1.4 GiB
CPU user 239.8s
CPU sys 6.4s
Peak spill 0 B

tpcds — branch

Metric Value
Wall time 55.0s
Peak memory 1.7 GiB
Avg memory 1.3 GiB
CPU user 242.8s
CPU sys 6.5s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

Comparing HEAD and lift-selectivity-stats
--------------------
Benchmark clickbench_partitioned.json
--------------------
┏━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━━━━┓
┃ Query     ┃                                  HEAD ┃                lift-selectivity-stats ┃        Change ┃
┡━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━━━━┩
│ QQuery 0  │          1.16 / 3.30 ±4.22 / 11.74 ms │          1.13 / 3.24 ±4.16 / 11.55 ms │     no change │
│ QQuery 1  │        12.25 / 12.56 ±0.20 / 12.83 ms │        12.10 / 12.48 ±0.22 / 12.70 ms │     no change │
│ QQuery 2  │        35.11 / 35.52 ±0.25 / 35.86 ms │        35.55 / 35.85 ±0.27 / 36.30 ms │     no change │
│ QQuery 3  │        29.78 / 30.70 ±0.97 / 32.56 ms │        29.70 / 30.10 ±0.29 / 30.56 ms │     no change │
│ QQuery 4  │     222.08 / 223.80 ±1.71 / 226.64 ms │     223.72 / 225.99 ±2.71 / 231.24 ms │     no change │
│ QQuery 5  │     271.10 / 275.79 ±4.05 / 281.78 ms │     267.13 / 271.06 ±2.79 / 275.73 ms │     no change │
│ QQuery 6  │           1.17 / 1.32 ±0.22 / 1.75 ms │           1.17 / 1.31 ±0.22 / 1.75 ms │     no change │
│ QQuery 7  │        13.71 / 14.21 ±0.44 / 14.88 ms │        13.59 / 13.74 ±0.16 / 14.05 ms │     no change │
│ QQuery 8  │     317.99 / 322.62 ±3.63 / 328.49 ms │     319.02 / 322.72 ±2.64 / 325.89 ms │     no change │
│ QQuery 9  │     449.68 / 452.66 ±2.34 / 456.81 ms │     456.80 / 463.35 ±6.13 / 473.30 ms │     no change │
│ QQuery 10 │        68.19 / 68.75 ±0.33 / 69.18 ms │        67.85 / 71.12 ±6.11 / 83.33 ms │     no change │
│ QQuery 11 │        80.80 / 83.61 ±3.24 / 88.96 ms │        78.58 / 79.93 ±1.01 / 81.15 ms │     no change │
│ QQuery 12 │    263.17 / 273.91 ±10.02 / 292.21 ms │     267.01 / 271.87 ±3.57 / 277.62 ms │     no change │
│ QQuery 13 │     358.43 / 367.82 ±8.50 / 382.59 ms │     364.59 / 373.45 ±7.56 / 386.28 ms │     no change │
│ QQuery 14 │     278.81 / 282.61 ±4.26 / 290.83 ms │    285.83 / 294.76 ±10.82 / 315.48 ms │     no change │
│ QQuery 15 │     261.75 / 267.41 ±3.93 / 272.93 ms │    268.49 / 288.07 ±21.01 / 326.38 ms │  1.08x slower │
│ QQuery 16 │    602.80 / 617.37 ±11.65 / 631.79 ms │    614.61 / 627.46 ±15.20 / 657.19 ms │     no change │
│ QQuery 17 │     613.12 / 616.87 ±4.30 / 624.83 ms │    617.48 / 634.23 ±18.43 / 669.87 ms │     no change │
│ QQuery 18 │ 1236.75 / 1269.64 ±22.40 / 1297.62 ms │ 1265.87 / 1293.75 ±18.21 / 1317.17 ms │     no change │
│ QQuery 19 │        27.22 / 27.82 ±0.60 / 28.96 ms │       27.46 / 35.60 ±15.96 / 67.53 ms │  1.28x slower │
│ QQuery 20 │    513.94 / 525.55 ±13.18 / 546.86 ms │     517.86 / 525.96 ±6.10 / 536.63 ms │     no change │
│ QQuery 21 │     512.73 / 517.63 ±3.22 / 521.83 ms │     509.60 / 517.43 ±6.58 / 526.00 ms │     no change │
│ QQuery 22 │     980.37 / 989.94 ±6.88 / 998.00 ms │    984.25 / 991.86 ±9.44 / 1009.77 ms │     no change │
│ QQuery 23 │ 3146.71 / 3191.53 ±30.76 / 3237.78 ms │ 3187.03 / 3203.43 ±12.14 / 3223.87 ms │     no change │
│ QQuery 24 │        40.63 / 42.49 ±1.12 / 44.13 ms │        41.44 / 41.88 ±0.35 / 42.26 ms │     no change │
│ QQuery 25 │     112.25 / 114.03 ±1.81 / 117.08 ms │    108.25 / 116.01 ±12.65 / 141.26 ms │     no change │
│ QQuery 26 │        41.32 / 43.06 ±2.40 / 47.79 ms │        41.41 / 43.19 ±1.78 / 46.30 ms │     no change │
│ QQuery 27 │    666.78 / 679.79 ±11.28 / 697.58 ms │     672.62 / 679.14 ±6.53 / 689.76 ms │     no change │
│ QQuery 28 │ 3025.69 / 3057.64 ±27.86 / 3101.17 ms │ 3004.59 / 3040.02 ±26.06 / 3072.22 ms │     no change │
│ QQuery 29 │       39.95 / 46.41 ±12.59 / 71.58 ms │        40.31 / 44.33 ±4.72 / 50.92 ms │     no change │
│ QQuery 30 │     294.68 / 304.52 ±7.54 / 314.52 ms │     300.96 / 306.57 ±4.57 / 312.13 ms │     no change │
│ QQuery 31 │     281.51 / 287.73 ±5.89 / 297.56 ms │     285.22 / 292.53 ±6.43 / 302.01 ms │     no change │
│ QQuery 32 │   914.46 / 963.56 ±37.48 / 1014.16 ms │    928.17 / 962.43 ±19.02 / 983.84 ms │     no change │
│ QQuery 33 │ 1410.34 / 1459.91 ±28.05 / 1496.24 ms │ 1422.47 / 1475.33 ±36.09 / 1520.15 ms │     no change │
│ QQuery 34 │ 1451.60 / 1480.23 ±23.86 / 1518.04 ms │ 1453.10 / 1482.36 ±23.41 / 1522.62 ms │     no change │
│ QQuery 35 │    272.46 / 319.01 ±80.98 / 480.49 ms │    283.23 / 298.53 ±20.43 / 338.34 ms │ +1.07x faster │
│ QQuery 36 │        64.12 / 71.08 ±9.18 / 88.13 ms │        66.08 / 70.03 ±3.34 / 74.29 ms │     no change │
│ QQuery 37 │        35.65 / 36.32 ±0.56 / 37.29 ms │        34.89 / 35.62 ±0.47 / 36.28 ms │     no change │
│ QQuery 38 │        39.82 / 40.83 ±0.89 / 42.30 ms │        39.71 / 44.57 ±3.96 / 51.12 ms │  1.09x slower │
│ QQuery 39 │    132.50 / 153.76 ±14.75 / 170.52 ms │     143.48 / 153.18 ±5.61 / 158.71 ms │     no change │
│ QQuery 40 │        14.05 / 15.37 ±1.80 / 18.83 ms │        13.95 / 14.17 ±0.22 / 14.55 ms │ +1.09x faster │
│ QQuery 41 │        13.47 / 13.63 ±0.15 / 13.91 ms │        13.43 / 13.64 ±0.13 / 13.82 ms │     no change │
│ QQuery 42 │        12.61 / 12.79 ±0.16 / 13.08 ms │        12.83 / 14.52 ±2.91 / 20.33 ms │  1.14x slower │
└───────────┴───────────────────────────────────────┴───────────────────────────────────────┴───────────────┘
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━━━━━┓
┃ Benchmark Summary                     ┃            ┃
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━━━━━┩
│ Total Time (HEAD)                     │ 19615.11ms │
│ Total Time (lift-selectivity-stats)   │ 19716.82ms │
│ Average Time (HEAD)                   │   456.17ms │
│ Average Time (lift-selectivity-stats) │   458.53ms │
│ Queries Faster                        │          2 │
│ Queries Slower                        │          4 │
│ Queries with No Change                │         37 │
│ Queries with Failure                  │          0 │
└───────────────────────────────────────┴────────────┘

Resource Usage

clickbench_partitioned — base (merge-base)

Metric Value
Wall time 100.0s
Peak memory 12.1 GiB
Avg memory 4.7 GiB
CPU user 1002.5s
CPU sys 68.7s
Peak spill 0 B

clickbench_partitioned — branch

Metric Value
Wall time 100.0s
Peak memory 11.5 GiB
Avg memory 4.2 GiB
CPU user 1004.7s
CPU sys 71.2s
Peak spill 0 B

File an issue against this benchmark runner

@adriangb

Copy link
Copy Markdown
Contributor Author

run benchmark predicate_eval

env:
  DATAFUSION_EXECUTION_ADAPTIVE_FILTER_REORDERING: true

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark running (GKE) | trigger
Instance: c4a-highmem-16 (12 vCPU / 65 GiB) | Linux bench-c4691129834-555-z4fph 6.12.68+ #1 SMP Sat May 2 07:49:07 UTC 2026 aarch64 GNU/Linux

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected

Comparing lift-selectivity-stats (796bca3) to 0f8a121 (merge-base) diff using: predicate_eval
Results will be posted here when complete


File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

group                                                                            HEAD                                   lift-selectivity-stats
-----                                                                            ----                                   ----------------------
predicate_eval/cardinality_q30_k2_cardinality                                    1.00    746.1±5.62µs        ? ?/sec    1.01    754.7±5.78µs        ? ?/sec
predicate_eval/cardinality_q31_k4_cardinality                                    1.01    944.5±7.39µs        ? ?/sec    1.00    937.2±8.15µs        ? ?/sec
predicate_eval/cardinality_q32_k8_cardinality                                    1.11  1469.8±13.29µs        ? ?/sec    1.00  1321.9±10.11µs        ? ?/sec
predicate_eval/cardinality_q33_k16_cardinality                                   1.51      3.8±0.03ms        ? ?/sec    1.00      2.5±0.02ms        ? ?/sec
predicate_eval/correlation_q70_independent_correlation                           1.00    777.0±4.89µs        ? ?/sec    1.02    788.7±4.99µs        ? ?/sec
predicate_eval/correlation_q71_positive_correlation                              1.00    702.7±6.36µs        ? ?/sec    1.00    704.6±5.98µs        ? ?/sec
predicate_eval/correlation_q72_anti_correlation                                  1.01    685.0±3.80µs        ? ?/sec    1.00    681.1±7.02µs        ? ?/sec
predicate_eval/cost_q10_expensive_first_cost                                     1.00    860.0±7.92µs        ? ?/sec    1.01    872.2±7.13µs        ? ?/sec
predicate_eval/cost_q11_cheap_first_cost                                         1.00    866.3±8.69µs        ? ?/sec    1.02    879.6±7.07µs        ? ?/sec
predicate_eval/costsel_q01_regexp_selective_last_costsel                         1.82      5.9±0.02ms        ? ?/sec    1.00      3.2±0.01ms        ? ?/sec
predicate_eval/costsel_q02_regexp_selective_first_costsel                        1.00      2.2±0.03ms        ? ?/sec    1.00      2.2±0.01ms        ? ?/sec
predicate_eval/costsel_q03_cheap_unselective_then_expensive_selective_costsel    1.00  1719.6±14.64µs        ? ?/sec    1.01   1737.4±8.87µs        ? ?/sec
predicate_eval/drift_q80_a_then_b_drift                                          1.00    695.3±7.66µs        ? ?/sec    1.02    707.2±5.76µs        ? ?/sec
predicate_eval/drift_q81_b_then_a_drift                                          1.00    675.8±5.56µs        ? ?/sec    1.02    688.9±6.69µs        ? ?/sec
predicate_eval/neutral_q60_cheap_uniform_neutral                                 1.04   1087.5±5.98µs        ? ?/sec    1.00   1043.0±5.32µs        ? ?/sec
predicate_eval/neutral_q61_expensive_uniform_neutral                             1.03      4.9±0.03ms        ? ?/sec    1.00      4.7±0.02ms        ? ?/sec
predicate_eval/scale_q50_5k_scale                                                1.02    493.7±2.96µs        ? ?/sec    1.00    483.6±1.69µs        ? ?/sec
predicate_eval/scale_q51_100k_scale                                              1.00    615.2±5.73µs        ? ?/sec    1.01    623.4±2.98µs        ? ?/sec
predicate_eval/scale_q52_5m_scale                                                1.00      5.9±0.04ms        ? ?/sec    1.02      6.0±0.02ms        ? ?/sec
predicate_eval/scale_q53_50m_scale                                               1.00     53.5±0.06ms        ? ?/sec    1.02     54.4±0.12ms        ? ?/sec
predicate_eval/selectivity_q20_unselective_first_selectivity                     1.00    740.1±7.85µs        ? ?/sec    1.03    763.4±7.48µs        ? ?/sec
predicate_eval/selectivity_q21_selective_first_selectivity                       1.00    741.6±6.23µs        ? ?/sec    1.01    750.2±7.28µs        ? ?/sec
predicate_eval/width_q40_narrow_width                                            1.77      2.8±0.01ms        ? ?/sec    1.00   1574.9±8.38µs        ? ?/sec
predicate_eval/width_q41_wide_width                                              1.85      5.9±0.02ms        ? ?/sec    1.00      3.2±0.02ms        ? ?/sec
predicate_eval/width_q42_xwide_width                                             2.13     24.1±0.12ms        ? ?/sec    1.00     11.3±0.04ms        ? ?/sec

Resource Usage

predicate_eval — base (merge-base)

Metric Value
Wall time 755.2s
Peak memory 9.7 GiB
Avg memory 217.6 MiB
CPU user 1213.0s
CPU sys 22.1s
Peak spill 0 B

predicate_eval — branch

Metric Value
Wall time 750.2s
Peak memory 9.9 GiB
Avg memory 232.0 MiB
CPU user 1202.0s
CPU sys 24.3s
Peak spill 0 B

File an issue against this benchmark runner

@adriangbot

Copy link
Copy Markdown

🤖 Benchmark completed (GKE) | trigger

Instance: c4a-highmem-16 (12 vCPU / 65 GiB)

CPU Details (lscpu)
Architecture:                            aarch64
CPU op-mode(s):                          64-bit
Byte Order:                              Little Endian
CPU(s):                                  16
On-line CPU(s) list:                     0-15
Vendor ID:                               ARM
Model name:                              Neoverse-V2
Model:                                   1
Thread(s) per core:                      1
Core(s) per cluster:                     16
Socket(s):                               -
Cluster(s):                              1
Stepping:                                r0p1
BogoMIPS:                                2000.00
Flags:                                   fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm jscvt fcma lrcpc dcpop sha3 sm3 sm4 asimddp sha512 sve asimdfhm dit uscat ilrcpc flagm sb paca pacg dcpodp sve2 sveaes svepmull svebitperm svesha3 svesm4 flagm2 frint svei8mm svebf16 i8mm bf16 dgh rng bti
L1d cache:                               1 MiB (16 instances)
L1i cache:                               1 MiB (16 instances)
L2 cache:                                32 MiB (16 instances)
L3 cache:                                80 MiB (1 instance)
NUMA node(s):                            1
NUMA node0 CPU(s):                       0-15
Vulnerability Gather data sampling:      Not affected
Vulnerability Indirect target selection: Not affected
Vulnerability Itlb multihit:             Not affected
Vulnerability L1tf:                      Not affected
Vulnerability Mds:                       Not affected
Vulnerability Meltdown:                  Not affected
Vulnerability Mmio stale data:           Not affected
Vulnerability Reg file data sampling:    Not affected
Vulnerability Retbleed:                  Not affected
Vulnerability Spec rstack overflow:      Not affected
Vulnerability Spec store bypass:         Mitigation; Speculative Store Bypass disabled via prctl
Vulnerability Spectre v1:                Mitigation; __user pointer sanitization
Vulnerability Spectre v2:                Mitigation; CSV2, BHB
Vulnerability Srbds:                     Not affected
Vulnerability Tsa:                       Not affected
Vulnerability Tsx async abort:           Not affected
Vulnerability Vmscape:                   Not affected
Details

group                                                                            HEAD                                   lift-selectivity-stats
-----                                                                            ----                                   ----------------------
predicate_eval/cardinality_q30_k2_cardinality                                    1.00    764.6±4.47µs        ? ?/sec    1.00    767.8±6.69µs        ? ?/sec
predicate_eval/cardinality_q31_k4_cardinality                                    1.00    928.6±3.70µs        ? ?/sec    1.02    943.1±5.85µs        ? ?/sec
predicate_eval/cardinality_q32_k8_cardinality                                    1.09  1437.8±15.77µs        ? ?/sec    1.00   1323.0±3.95µs        ? ?/sec
predicate_eval/cardinality_q33_k16_cardinality                                   1.51      3.7±0.02ms        ? ?/sec    1.00      2.5±0.01ms        ? ?/sec
predicate_eval/correlation_q70_independent_correlation                           1.00    799.3±5.57µs        ? ?/sec    1.00    801.4±5.95µs        ? ?/sec
predicate_eval/correlation_q71_positive_correlation                              1.00    717.0±7.36µs        ? ?/sec    1.01    722.6±7.04µs        ? ?/sec
predicate_eval/correlation_q72_anti_correlation                                  1.01    701.7±6.36µs        ? ?/sec    1.00    696.6±6.53µs        ? ?/sec
predicate_eval/cost_q10_expensive_first_cost                                     1.00    871.2±5.95µs        ? ?/sec    1.01    880.5±5.34µs        ? ?/sec
predicate_eval/cost_q11_cheap_first_cost                                         1.00    873.8±6.25µs        ? ?/sec    1.00    875.6±4.20µs        ? ?/sec
predicate_eval/costsel_q01_regexp_selective_last_costsel                         1.82      5.8±0.02ms        ? ?/sec    1.00      3.2±0.01ms        ? ?/sec
predicate_eval/costsel_q02_regexp_selective_first_costsel                        1.00      2.2±0.01ms        ? ?/sec    1.00      2.2±0.01ms        ? ?/sec
predicate_eval/costsel_q03_cheap_unselective_then_expensive_selective_costsel    1.00   1720.6±8.07µs        ? ?/sec    1.01  1744.9±19.82µs        ? ?/sec
predicate_eval/drift_q80_a_then_b_drift                                          1.00    710.3±4.39µs        ? ?/sec    1.01    714.6±6.07µs        ? ?/sec
predicate_eval/drift_q81_b_then_a_drift                                          1.00    695.5±5.67µs        ? ?/sec    1.01    705.9±4.50µs        ? ?/sec
predicate_eval/neutral_q60_cheap_uniform_neutral                                 1.04   1106.1±6.88µs        ? ?/sec    1.00   1064.5±6.78µs        ? ?/sec
predicate_eval/neutral_q61_expensive_uniform_neutral                             1.01      4.8±0.04ms        ? ?/sec    1.00      4.8±0.03ms        ? ?/sec
predicate_eval/scale_q50_5k_scale                                                1.00    493.9±2.51µs        ? ?/sec    1.00    491.9±1.64µs        ? ?/sec
predicate_eval/scale_q51_100k_scale                                              1.00    632.7±4.35µs        ? ?/sec    1.00    633.1±6.30µs        ? ?/sec
predicate_eval/scale_q52_5m_scale                                                1.00      5.9±0.02ms        ? ?/sec    1.03      6.0±0.09ms        ? ?/sec
predicate_eval/scale_q53_50m_scale                                               1.00     53.6±0.18ms        ? ?/sec    1.02     54.6±0.13ms        ? ?/sec
predicate_eval/selectivity_q20_unselective_first_selectivity                     1.00    758.6±9.32µs        ? ?/sec    1.02    771.8±7.40µs        ? ?/sec
predicate_eval/selectivity_q21_selective_first_selectivity                       1.00    760.2±8.25µs        ? ?/sec    1.01    765.7±8.22µs        ? ?/sec
predicate_eval/width_q40_narrow_width                                            1.77      2.8±0.01ms        ? ?/sec    1.00   1571.8±4.47µs        ? ?/sec
predicate_eval/width_q41_wide_width                                              1.85      6.0±0.01ms        ? ?/sec    1.00      3.2±0.01ms        ? ?/sec
predicate_eval/width_q42_xwide_width                                             2.14     24.1±0.06ms        ? ?/sec    1.00     11.2±0.04ms        ? ?/sec

Resource Usage

predicate_eval — base (merge-base)

Metric Value
Wall time 745.2s
Peak memory 9.8 GiB
Avg memory 225.8 MiB
CPU user 1247.9s
CPU sys 22.7s
Peak spill 0 B

predicate_eval — branch

Metric Value
Wall time 750.2s
Peak memory 9.7 GiB
Avg memory 232.0 MiB
CPU user 1208.0s
CPU sys 25.1s
Peak spill 0 B

File an issue against this benchmark runner

…biter

Split the responsibility of coordinating "which arrangement should a
collection of filters execute with" from what an arrangement is. The
champion/challenger machinery FilterExec's adaptive reordering uses — the
epoch-broadcast champion, the shared paired A/B trial ledger, the
CI-separated verdict, the rejected-candidate memory — was entangled with
ordering-specific types (conjunct permutations, the evaluation strategy)
inside datafusion-physical-plan, but none of it depends on what is being
decided.

Move it into the adaptive substrate as AdaptiveArbiter<A>, generic over an
opaque arrangement type: FilterExec instantiates it with
{order, strategy}, and an adaptive parquet scan deciding filter *placement*
(row filter vs post-scan, i.e. when to late-materialize — cf. the apache#22144
experiment, which already tracks the same per-filter stats) can instantiate
it with a placement assignment while reusing the identical trial protocol
and the existing SelectivityStats/AdaptiveStatsRegistry. The substrate now
has three policy-free pieces: per-filter measurement, the concurrent
registry, and decision coordination; consumers own proposals, scheduling,
and arrangement semantics.

No behavior change: FilterExec's adaptive path is a mechanical rewire
(AdaptiveFilterShared = registry + arbiter), verified by the unchanged unit
suite and an unchanged perf-harness profile.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

auto detected api change Auto detected API change common Related to common crate documentation Improvements or additions to documentation physical-expr Changes to the physical-expr crates physical-plan Changes to the physical-plan crate sqllogictest SQL Logic Tests (.slt)

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants